item.role == 'DEBTOR' && item.type == '本人').phone,contactId:baseInfo.debtorEntityList.find(item => item.role == 'DEBTOR' && item.type == '本人').id})">
当前逾期金额:
-
{{thisCaseInfo.fields.find(item => item.fieldKey == 'moneyAmount').fieldValue}}
+
{{caseInfo.fields.find(item => item.fieldKey == 'moneyAmount').fieldValue}}
{{item.name}}:
{{item.fieldValue}}
@@ -127,23 +127,23 @@
案件信息
案件包名称:
-
{{thisCaseInfo.casePkg.pkgName}}
+
{{caseInfo.casePkg.pkgName}}
金融机构:
-
{{thisCaseInfo.casePkg.entrustingAgencyName}}
+
{{caseInfo.casePkg.entrustingAgencyName}}
委案开始日期:
-
{{thisCaseInfo.casePkg.planStartTime | formaDate('yyyy-MM-dd')}}
+
{{caseInfo.casePkg.planStartTime | formaDate('yyyy-MM-dd')}}
委案结束日期:
-
{{thisCaseInfo.casePkg.planEndTime | formaDate('yyyy-MM-dd')}}
+
{{caseInfo.casePkg.planEndTime | formaDate('yyyy-MM-dd')}}
委案渠道:
-
{{thisCaseInfo.casePkg.channel}}
+
{{caseInfo.casePkg.channel}}
@@ -192,7 +192,7 @@
-
+
@@ -380,22 +380,18 @@ export default {
},
props: {
caseId: {
- type: String,
- default: () => {
- return ''
- },
+ type: [String, Number],
+ default: () => ''
},
- thisCaseInfo: {
+ caseInfo: {
type: Object,
default: () => {
return {}
},
},
updateUnm: {
- type: number,
- default: () => {
- return 0
- },
+ type: Number,
+ default: () => 0
},
},
@@ -412,7 +408,7 @@ export default {
AgentData:[],
fileList: [],
mediationRecord: [],//调解记录
- baseInfo: {casePkg:{}},//基本信息
+ baseInfo: {casePkg:{},debtorEntityList:[]},//基本信息
obligorInfo: [],//债务人信息
communicationRecord: [],
@@ -457,8 +453,8 @@ export default {
this.mediaterecordpm.caseId = this.caseId
this.eventDialog.caseId = this.caseId
- this.eventDialog.jointDebt = this.thisCaseInfo.jointDebt
- this.eventDialog.mainCaseId = this.thisCaseInfo.mainCaseId
+ this.eventDialog.jointDebt = this.caseInfo.jointDebt
+ this.eventDialog.mainCaseId = this.caseInfo.mainCaseId
this.getCaseInfoById();//获取详情
this.getAgentList()
diff --git a/src/pages/mediation-page/components/MediationRoom.vue b/src/pages/mediation-page/components/MediationRoom.vue
index dbe326e..fda533d 100644
--- a/src/pages/mediation-page/components/MediationRoom.vue
+++ b/src/pages/mediation-page/components/MediationRoom.vue
@@ -8,9 +8,9 @@
-
{{ baseInfo.debtorEntityList.find(item => (item.role == 'DEBTOR' && item.type == '本人')).name }}
+
{{ baseInfo.debtorEntityList.find(item => (item.role == 'DEBTOR' && item.type == '本人')).name }}
- {{ baseInfo.debtorEntityList.find(item => (item.role == 'DEBTOR' && item.type == '本人')).addr }}
+ {{ baseInfo.debtorEntityList.find(item => (item.role == 'DEBTOR' && item.type == '本人')).addr }}
@@ -117,7 +117,7 @@
-
+
@@ -556,7 +556,7 @@ export default {
}
})
}
- this.thisCaseInfo = res
+ this.thisCaseInfo = {...res}
if(res.jointDebt == 1){
// 有共债 mainCaseId
@@ -721,7 +721,7 @@ export default {
})
},
startCall () {
- if (!this.$clickThrottle()) {
+ if (!this.$clickThrottle(1000)) {
return
}
console.log('queueList==================',this.queueList)