From e2286451eabc2878cf0bc10ccea9239e5baafe6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=97=AB=E6=99=93=E8=8C=B9?= <1935832701@qq.com> Date: Fri, 15 Nov 2024 16:25:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/followup/index.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/system/followup/index.vue b/src/views/system/followup/index.vue index e4a8028..f0bf958 100644 --- a/src/views/system/followup/index.vue +++ b/src/views/system/followup/index.vue @@ -892,11 +892,11 @@ export default { async playback(row) { console.log(row,'row') this.patientName=row.patientName - await this.$confirm("是否确认回放?", "提示", { - confirmButtonText: "确认", - cancelButtonText: "取消", - type: "warning", - }).then(() => { + // await this.$confirm("是否确认回放?", "提示", { + // confirmButtonText: "确认", + // cancelButtonText: "取消", + // type: "warning", + // }).then(() => { getPhoneDialVideo(row.manageRouteNodeId).then((res) => { console.log(res, "res"); this.audioshow = true; @@ -905,7 +905,7 @@ export default { setTimeout(() => { this.$refs.audioPlayer.load(); // 重新加载音频,以确保每次播放都是新的音频文件 // this.$refs.audioPlayer.play(); - }, 1000); + // }, 1000); }); }); },