diff --git a/src/views/remote-manage/remote-control.vue b/src/views/remote-manage/remote-control.vue index a42ca61..a0658d0 100644 --- a/src/views/remote-manage/remote-control.vue +++ b/src/views/remote-manage/remote-control.vue @@ -376,7 +376,8 @@ const subscribeChat = () => { messageList.value = msg.history; } if (msg.msgType == "destroy") { - ElMessageBox.confirm('远程查看' + (currentIndex + 1) + '已断开与手术室连接', '提示', { + // ElMessageBox.confirm('远程查看' + (currentIndex + 1) + '已断开与手术室连接', '提示', { + ElMessageBox.confirm('远程查看' + '已断开与手术室连接', '提示', { confirmButtonText: '确认', type: 'info' }).then(() => { @@ -386,7 +387,8 @@ const subscribeChat = () => { }) remoteWsStore.chatOnclose(currentRemote.value.patient, currentRemote.value.patientId, currentRemote.value.date, currentIndex, () => { setTimeout(() => { - ElMessage.info('远程查看' + (currentIndex + 1) + ', 通讯连接断开,正在尝试重连……') + // ElMessage.info('远程查看' + (currentIndex + 1) + ', 通讯连接断开,正在尝试重连……') + ElMessage.info('远程查看, 通讯连接断开,正在尝试重连……') subscribeChat() }, 3000) })