diff --git a/src/views/caseManage/caseCommon/caseFormProcess.vue b/src/views/caseManage/caseCommon/caseFormProcess.vue index ebe3d04..d864644 100644 --- a/src/views/caseManage/caseCommon/caseFormProcess.vue +++ b/src/views/caseManage/caseCommon/caseFormProcess.vue @@ -101,7 +101,17 @@ 播放录音 - 回访拨号 + +
+ 本地号码 + 外地号码 +
+ 回访拨号 +
@@ -164,6 +174,7 @@ url: '', controlList: 'noDownload noSpeed onlyOnePlaying' }, + popoverVisible: false, // 选择本地外地呼叫的弹窗 soundShow: false // 显示音频弹窗 } }, @@ -196,9 +207,11 @@ this.$refs.adplayer.pausePlay() }, // 拨打回访电话 - revisit() { - const tel = '9' + this.caseForm.reporterPhone + revisit(middleString) { + // middleString为空或0,分别表示本地或外地 + const tel = '9' + middleString + this.caseForm.reporterPhone this.$store.dispatch('dial', tel) + this.popoverVisible = false } } }