From 2df7ec9821ca26a64e68c2523e96c9cf48f10f49 Mon Sep 17 00:00:00 2001 From: tangchengming <445785772@qq.com> Date: Fri, 28 Feb 2025 13:45:46 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/LayoutContentNew.vue | 44 +++++++++---------- .../components/MediationRoom.vue | 6 +-- 2 files changed, 23 insertions(+), 27 deletions(-) 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) From 42a74f3c4e2fd777c4bf2fef04037ea47d1bf117 Mon Sep 17 00:00:00 2001 From: liuxi <357439530@qq.com> Date: Fri, 28 Feb 2025 14:27:30 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BC=98=E5=8C=96=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dtraceDetail/officeWDialogDetail.vue | 5 +++++ src/pages/layout/components/LayoutHeader.vue | 4 ++-- .../mediation-page/components/LayoutContentNew.vue | 14 +++++++------- .../mediation-page/components/MediationRoom.vue | 4 ++-- 4 files changed, 16 insertions(+), 11 deletions(-) diff --git a/src/pages/event-tracing/dtraceDetail/officeWDialogDetail.vue b/src/pages/event-tracing/dtraceDetail/officeWDialogDetail.vue index 112982a..1a2f7b6 100644 --- a/src/pages/event-tracing/dtraceDetail/officeWDialogDetail.vue +++ b/src/pages/event-tracing/dtraceDetail/officeWDialogDetail.vue @@ -64,6 +64,11 @@ {{ scope.row.status.desc }} + + +