diff --git a/src/pages/mediation-page/components/LayoutContentNew.vue b/src/pages/mediation-page/components/LayoutContentNew.vue index 6b1b5c9..8f44b1c 100644 --- a/src/pages/mediation-page/components/LayoutContentNew.vue +++ b/src/pages/mediation-page/components/LayoutContentNew.vue @@ -84,7 +84,7 @@
-
+
呼叫被申请人
@@ -582,7 +582,9 @@ export default { }, openRecordDialog(obj) { this.visiblemediatRecord = true; - this.visiblemediatRecordObj = obj; + let jsonobj = obj + jsonobj.linkedPerson = JSON.parse(obj.linkedPerson) + this.visiblemediatRecordObj = jsonobj; }, startOutboundCall(params, contactId) { // let params = { diff --git a/src/pages/mediation-page/components/MediationRoom.vue b/src/pages/mediation-page/components/MediationRoom.vue index ce36497..2e7f52c 100644 --- a/src/pages/mediation-page/components/MediationRoom.vue +++ b/src/pages/mediation-page/components/MediationRoom.vue @@ -669,9 +669,8 @@ export default { if (this.queue) { for (let i=0; i < this.queueList.length; i++) { if (this.queueList[i].status.code === 1) { - console.log('定位到可拨打的案件',i,this.queueList[i]) this.index = i - this.startOutboundCall() + this.startOutboundCall({phone:this.queueList[i].phone,contactId:this.queueList[i].contactId}) return } } @@ -688,7 +687,6 @@ export default { if (this.calling) return this.phoneNumber = params.phone this.contactId= params.contactId - // console.log('进入呼叫电话:', this.phoneNumber) try { let res = await window.tccc.Call.startOutboundCall({phoneNumber: this.phoneNumber})