diff --git a/src/views/awardManagement/components/paymentdetailsDialog.vue b/src/views/awardManagement/components/paymentdetailsDialog.vue index fe49376..f898afa 100644 --- a/src/views/awardManagement/components/paymentdetailsDialog.vue +++ b/src/views/awardManagement/components/paymentdetailsDialog.vue @@ -41,6 +41,11 @@ {{ item }}

+ +

+ {{ item }} +

+
@@ -161,8 +166,10 @@ export default { applicantPathArr: [], //申请人 respondentFileArr: [], //被申请人 respondenPathArr: [], //被申请人 - awardFileArr: [], //裁决书 - awardPathArr: [], //裁决书 + awardFileArr: [], //庭审笔录文件 + awardPathArr: [], //庭审笔录路径 + bookFileArr: [], //裁决书文件 + bookPathArr: [], //庭审笔录路径 }; }, watch: { @@ -188,6 +195,8 @@ export default { // 申请人裁决书 evidenceFile(val) { if (val) { + this.bookFileArr = []; + this.bookPathArr = []; val.caseAttachList.forEach((item) => { if (item.annexType == 2) { this.applicantFileArr.push(item.annexName); @@ -200,6 +209,9 @@ export default { this.awardPathArr = []; this.awardFileArr.push(item.annexName); this.awardPathArr.push(item.annexPath); + } else if (item.annexType == 7) { + this.bookFileArr.push(item.annexName); + this.bookPathArr.push(item.annexPath); } }); } @@ -213,6 +225,8 @@ export default { window.open(headPath + this.respondenPathArr[index], "_blank"); } else if (val == 3) { window.open(headPath + this.awardPathArr[index], "_blank"); + } else if (val == 7) { + window.open(headPath + this.bookPathArr[index], "_blank"); } }, // 校验裁决书 diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index cba7cd5..c4858ca 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -381,7 +381,7 @@ export default { this.operateTitle = '批量删除'; this.operateStatus = 1; } else if (type == 2) { - this.operateTitle = '批量立案申请'; + this.operateTitle = '批量立案审查'; this.operateStatus = 2; } }, @@ -458,7 +458,7 @@ export default { handleQuery() { this.queryParams.caseStatusList = []; if (!this.queryParams.caseStatus) { - this.queryParams.caseStatusList = [0, 1, 2, 5, 6, 7, 8, 9, 10] + this.queryParams.caseStatusList = [0, 1, 2, 5, 6, 7, 8, 9, 10,31] } if(this.queryParams.selectCaseStatus == 1){ this.queryParams.caseStatus = null; @@ -474,7 +474,7 @@ export default { /** 重置按钮操作 */ resetQuery() { this.resetForm("queryForm"); - (this.queryParams.caseStatusList = [0, 1, 2, 5, 6, 7, 8, 9, 10]), + (this.queryParams.caseStatusList = [0, 1, 2, 5, 6, 7, 8, 9, 10,31]), (this.queryParams.applicantName = ""), (this.queryParams.nameId = ""), this.getcaseApply(this.queryParams); diff --git a/src/views/caseManagement/components/caseentryDialog.vue b/src/views/caseManagement/components/caseentryDialog.vue index 8299880..ef01117 100644 --- a/src/views/caseManagement/components/caseentryDialog.vue +++ b/src/views/caseManagement/components/caseentryDialog.vue @@ -220,6 +220,18 @@ + + + + + + + + + + - + @@ -557,6 +582,7 @@ export default { nameAgent: "", contactTelphoneAgent: "", contactAddressAgent: "", + residenAffili: "" }, ], }, //申请人主体信息 @@ -574,7 +600,8 @@ export default { contactTelphoneAgent: "", contactAddressAgent: "", responSex: 1, - responBirth: "" + responBirth: "", + residenAffili: "" }, ], }, //被申请人主体信息 @@ -669,6 +696,11 @@ export default { fileList: [], applicateArr: [], quiltArr: [], + pickerOptions: { + disabledDate(time) { + return time.getTime() > Date.now() - 8.64e6; + } + } }; }, watch: { diff --git a/src/views/caseManagement/components/courtReviewDialog.vue b/src/views/caseManagement/components/courtReviewDialog.vue index 3fa14b8..8f1edd1 100644 --- a/src/views/caseManagement/components/courtReviewDialog.vue +++ b/src/views/caseManagement/components/courtReviewDialog.vue @@ -1,42 +1,57 @@