diff --git a/src/filters/index.js b/src/filters/index.js
index 3bca97a..c0ba307 100644
--- a/src/filters/index.js
+++ b/src/filters/index.js
@@ -139,7 +139,7 @@ let formaDate = (value, fmt) => {
let secondsToMinutes = (value) => {
- if(value == 0 || value == ''|| value == null){return ''}
+ if(value == 0 || value == ''|| value == null){return '0秒'}
const minutes = Math.floor(value / 60);
const seconds = value % 60;
if(minutes > 0)
diff --git a/src/pages/case-management/components/CalllogDialog.vue b/src/pages/case-management/components/CalllogDialog.vue
index 3098a43..ca8c706 100644
--- a/src/pages/case-management/components/CalllogDialog.vue
+++ b/src/pages/case-management/components/CalllogDialog.vue
@@ -33,7 +33,7 @@
- 通话{{scope.linkedDuration}}秒
+ 通话{{itemrecord.linkedDuration | secondsToMinutes}}
diff --git a/src/pages/case-management/detail/index.vue b/src/pages/case-management/detail/index.vue
index 38fecdf..7ed4270 100644
--- a/src/pages/case-management/detail/index.vue
+++ b/src/pages/case-management/detail/index.vue
@@ -335,7 +335,7 @@
-
+
@@ -381,9 +381,9 @@
-
+
- {{ scope.row.handleTime | formaDate("yyyy-MM-dd hh:mm:ss") }}
+ {{ scope.row.handleTime | formaDate("yyyy-MM-dd hh:mm:ss") }}
@@ -466,7 +466,7 @@ export default {
H: ''
}],
caseId: '',
- baseInfo: {},
+ baseInfo: {debtorEntityList:[],casePkg:{}},
fileList: [],
fileType: [{label: '身份证件', value: 1}, {label: '金融许可证', value: 2}, {
label: '营业执照',
@@ -510,8 +510,7 @@ export default {
if (this.$route.query.caseId != undefined) {
this.caseId = this.$route.query.caseId;
this.getCaseInfoById();//获取详情
- this.getmediate_record()
- this.getCaseLogsList()
+
}
},
methods: {
@@ -588,16 +587,18 @@ export default {
} else {
this.caseId = res.id.toString()
}
- }
+ this.getmediate_record()
+ this.getCaseLogsList()
+
+ this.getCoobligation()
+ this.getFileCaseList()
+ this.getLitigantByCaseId()
+ this.getplanlist()
+ this.getProofList()
+ this.getWritCaseList()
+ }
})
- this.getCoobligation()
- this.getFileCaseList()
- this.getLitigantByCaseId()
- this.getplanlist()
- this.getProofList()
- this.getWritCaseList()
-
},
// 共债数据
@@ -667,7 +668,12 @@ export default {
// 还款凭证
getProofList() {
this.ProofList = []
- api.gettraceProof_list({caseId: this.caseId}).then(res => {
+ let data_json = {caseId: this.caseId}
+ if(this.baseInfo.jointDebt == 1){
+ data_json ={mainCaseId: this.baseInfo.mainCaseId}
+ }
+
+ api.gettraceProof_list(data_json).then(res => {
if (!res.code) {
res.forEach(item =>{
if(item.status.code == 2){ this.ProofList.push(item)}
diff --git a/src/pages/mediation-page/components/LayoutContentNew.vue b/src/pages/mediation-page/components/LayoutContentNew.vue
index 19ccbf0..afff877 100644
--- a/src/pages/mediation-page/components/LayoutContentNew.vue
+++ b/src/pages/mediation-page/components/LayoutContentNew.vue
@@ -457,6 +457,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.getCaseInfoById();//获取详情
this.getAgentList()
diff --git a/src/pages/mediation-page/components/MediationRoom.vue b/src/pages/mediation-page/components/MediationRoom.vue
index e4c50d0..095782e 100644
--- a/src/pages/mediation-page/components/MediationRoom.vue
+++ b/src/pages/mediation-page/components/MediationRoom.vue
@@ -632,7 +632,7 @@ export default {
}
let resultmsg = '成功'
- if(resultStatus == 4){resultmsg = '失败'}
+ if(resultStatus == 6){resultmsg = '失败'}
this.$confirm("请确定是否将案件标记为"+resultmsg+"?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
diff --git a/src/pages/mediation-page/components/RepaymentCertificate.vue b/src/pages/mediation-page/components/RepaymentCertificate.vue
index 996231f..40ffe98 100644
--- a/src/pages/mediation-page/components/RepaymentCertificate.vue
+++ b/src/pages/mediation-page/components/RepaymentCertificate.vue
@@ -235,7 +235,12 @@ import api from "@/services/caseManagement";
})
},
getProofList(){
- api.gettraceProof_list({caseId:this.eventDialog.caseId}).then(async res => {
+ let data_json = {caseId: this.eventDialog.caseId}
+ if(this.eventDialog.jointDebt == 1){
+ data_json ={mainCaseId: this.eventDialog.mainCaseId}
+ }
+
+ api.gettraceProof_list(data_json).then(async res => {
if(!res.code){
await this.getpreviewfull(res)
}