diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index 79be501..6276905 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -3,7 +3,7 @@ - @@ -251,6 +251,7 @@ export default { timeConfirmData: {}, confirmTionData:{}, buttonList: [], + caseStausArr: [],//案件状态 isapplicant: true, //判断角色申请人或非申请人 }; }, @@ -328,6 +329,7 @@ export default { if(item.id !=17){ this.buttonList.push(item) } + this.caseStausArr.push(item) }); }) }, diff --git a/src/views/caseManagement/components/addCase.vue b/src/views/caseManagement/components/addCase.vue index 1b08f93..9e4b01b 100644 --- a/src/views/caseManagement/components/addCase.vue +++ b/src/views/caseManagement/components/addCase.vue @@ -106,7 +106,7 @@ - +
@@ -500,7 +500,8 @@ export default { respondentEvidence: [], //被申请人证据 buttonFlag: true, getUserInfoList: {}, - applicationFlag: null + applicationFlag: null, + showmediate: false }; }, watch: { @@ -531,6 +532,7 @@ export default { addVisable(val) { if (val) { this.activeName = "first"; + this.showmediate = false; this.getTemplateFn(); if (this.addModifyData != 1) { this.caseApplicationSelectByIdFn(this.caseData.id); @@ -570,6 +572,8 @@ export default { this.applicantEvidence.push(item); } else if (item.annexType == 6) { this.respondentEvidence.push(item); + } else if (item.annexType == 7) { + this.showmediate = true } }); });