From 003fd7881c44704648733aca202ea3a19d057c8b Mon Sep 17 00:00:00 2001 From: republicline <1464474399@qq.com> Date: Sun, 7 Sep 2025 22:38:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D,=E5=A4=9A=E4=B8=AA=E8=BF=9E?= =?UTF-8?q?=E6=8E=A5,=E7=8A=B6=E6=80=81=E6=8F=90=E7=A4=BA=E9=94=99?= =?UTF-8?q?=E8=AF=AF,=20=E5=B9=B6=E4=B8=94=E5=8E=BB=E9=99=A4=E7=B4=A2?= =?UTF-8?q?=E5=BC=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/remote-manage/remote-control.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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) })