diff --git a/src/assets/image/mediate/m-info8.png b/src/assets/image/mediate/m-info8.png new file mode 100644 index 0000000..76cf398 Binary files /dev/null and b/src/assets/image/mediate/m-info8.png differ diff --git a/src/pages/mediation-page/components/LayoutContentNew.vue b/src/pages/mediation-page/components/LayoutContentNew.vue index 0a2178d..10fa590 100644 --- a/src/pages/mediation-page/components/LayoutContentNew.vue +++ b/src/pages/mediation-page/components/LayoutContentNew.vue @@ -14,6 +14,10 @@ 基本信息 + + + 共债 + 联系人 @@ -113,6 +117,11 @@ + + + + + @@ -274,6 +283,7 @@ export default { SidebarTool: () => import('./SidebarTool'), singlesmsPopover: () => import('./singlesmsPopover.vue'),//发送短信 MediationRecordDialog: () => import('./MediationRecordDialog.vue'),//调解记录 + coobligationInfo: () => import('./coobligationInfo.vue'),//共债 }, data() { return { @@ -513,6 +523,8 @@ export default { } } + + .case-contact-person{ .contact-person-type{ background-color: #F2F3F5; diff --git a/src/pages/mediation-page/components/coobligationInfo.vue b/src/pages/mediation-page/components/coobligationInfo.vue new file mode 100644 index 0000000..310ea1c --- /dev/null +++ b/src/pages/mediation-page/components/coobligationInfo.vue @@ -0,0 +1,150 @@ + + + + + + 共债 + + 当前债务人名下共有{{coobligationInfo.caseNum}}笔债务, + 逾期总金额:{{coobligationInfo.totalAmount}}元, + 最低还款总金额:{{coobligationInfo.minTotalAmount}}元 + + + + + 债务一 + 详情 > + + + 案件包名称: + {{coobligationInfo.casePkg}} + + + 金融产品名称: + {{coobligationInfo.productTypeId}} + + + 金融机构名称: + {{coobligationInfo.financialOrgName}} + + + 案件编号: + {{coobligationInfo.caseNo}} + + + 合同名称: + + + + 被申请人姓名: + + + + 被申请人手机号码: + + + + 当前逾期金额: + + + + 最低还款金额: + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/services/caseManagement.js b/src/services/caseManagement.js index bba629e..4f4b901 100644 --- a/src/services/caseManagement.js +++ b/src/services/caseManagement.js @@ -280,6 +280,13 @@ const caseManagementApi = { return service.service.post(`${apiAdmin}case/mediate/record/list`, data, {hideLoading:true}) }, + // 共债案件查询 + mediate_coobligation_list: data => { + return service.service.post(`${apiAdmin}cases/caseInfo/joint/debt`, data, {hideLoading:true}) + }, + + + //========================end::案件管理====================================== }