diff --git a/src/pages/mediation-page/components/LayoutContentNew.vue b/src/pages/mediation-page/components/LayoutContentNew.vue index afff877..4367ca7 100644 --- a/src/pages/mediation-page/components/LayoutContentNew.vue +++ b/src/pages/mediation-page/components/LayoutContentNew.vue @@ -51,23 +51,23 @@
基本信息
案件包名称:
-
{{thisCaseInfo.casePkg.pkgName}}
+
{{caseInfo.casePkg.pkgName}}
金融产品名称:
-
{{thisCaseInfo.productTypeId}}
+
{{caseInfo.productTypeId}}
金融机构名称:
-
{{thisCaseInfo.financialOrgName}}
+
{{caseInfo.financialOrgName}}
案件编号:
-
{{thisCaseInfo.caseNo}}
+
{{caseInfo.caseNo}}
合同名称:
-
{{thisCaseInfo.fields.find(item => item.fieldKey == 'contactName').fieldValue}}
+
{{caseInfo.fields.find(item => item.fieldKey == 'contactName').fieldValue}}
被申请人姓名:
@@ -113,10 +113,10 @@
债务信息
当前逾期金额:
-
{{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 }, }, @@ -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..9d91be9 100644 --- a/src/pages/mediation-page/components/MediationRoom.vue +++ b/src/pages/mediation-page/components/MediationRoom.vue @@ -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)