This commit is contained in:
闫晓茹 2024-11-15 16:25:26 +08:00
parent d9ee9e3df0
commit e2286451ea

View File

@ -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);
});
});
},