diff --git a/src/pages/mediation-page/components/coobligationInfo.vue b/src/pages/mediation-page/components/coobligationInfo.vue
index 3a98321..7dbc198 100644
--- a/src/pages/mediation-page/components/coobligationInfo.vue
+++ b/src/pages/mediation-page/components/coobligationInfo.vue
@@ -13,7 +13,26 @@
-
详情 >
+
+
+
+
+ 详情 >
+
+
+
+
案件包名称:
@@ -45,11 +64,11 @@
-->
当前逾期金额:
-
{{item.fields.find(item => item.fieldKey == 'moneyAmount').fieldValue}}
+
{{item.fields.find(item => item.fieldKey == 'moneyAmount').fieldValue}}
最低还款金额:
-
{{item.fields.find(item => item.fieldKey == 'limitLine').fieldValue}}
+
{{item.fields.find(item => item.fieldKey == 'limitLine').fieldValue}}
@@ -65,6 +84,7 @@
import api from "@/services/caseManagement";
export default {
components: {
+ singleCaseInfoPopover: () => import('./singleCaseInfoPopover.vue'),//共债基本信息
// singlesmsPopover: () => import('./singlesmsPopover.vue'),//
},
props: {
@@ -77,6 +97,7 @@ export default {
},
data() {
return {
+ singlecaseinfovisible:false,
coobligationInfo:{},
}
},
diff --git a/src/pages/mediation-page/components/singleCaseInfoPopover.vue b/src/pages/mediation-page/components/singleCaseInfoPopover.vue
new file mode 100644
index 0000000..725b48d
--- /dev/null
+++ b/src/pages/mediation-page/components/singleCaseInfoPopover.vue
@@ -0,0 +1,163 @@
+
+
+
+
+
+
+
基本信息
+
+
金融产品名称:
+
{{baseInfo.productTypeId}}
+
+
+
金融机构名称:
+
{{baseInfo.financialOrgName}}
+
+
+
案件编号:
+
{{baseInfo.caseNo}}
+
+
+
合同名称:
+
{{baseInfo.fields.find(item => item.fieldKey == 'contactName').fieldValue}}
+
+
+
+
+
债务信息
+
+
当前逾期金额:
+
{{baseInfo.fields.find(item => item.fieldKey == 'moneyAmount').fieldValue}}
+
+
+
+
{{item.name}}:
+
{{item.fieldValue}}
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file