diff --git a/src/views/caseManagement/components/addCase.vue b/src/views/caseManagement/components/addCase.vue index 240f841..3af7bcd 100644 --- a/src/views/caseManagement/components/addCase.vue +++ b/src/views/caseManagement/components/addCase.vue @@ -84,7 +84,7 @@ --> - + - +
@@ -572,6 +572,7 @@ export default { getUserInfoList: {}, applicationFlag: null, showmediate: false, + showEvidence: false,//是否显示证据 formZipData: {}, nationalityList: [ { @@ -678,6 +679,7 @@ export default { this.formData.caseAttachList.forEach((item) => { if (item.annexType == 2) { this.applicantEvidence.push(item); + this.showEvidence = true } else if (item.annexType == 6) { // this.respondentEvidence.push(item); } else if (item.annexType == 7) { @@ -742,9 +744,10 @@ export default { return this.$confirm(`确定移除 ${file.name}?`); }, handleRemove(file, fileList) { - this.caseAttachListArr = this.caseAttachListArr.filter( - (item) => item.annexId != file.annexId - ); + let newcaseAttachList = this.formData.caseAttachList.filter(item => + item.annexId !== file.response.annexId + ) + this.formData.caseAttachList = newcaseAttachList }, handleExceedZip(files, fileList) { this.$message.warning(`当前限制选择 1 个文件`); diff --git a/src/views/caseManagement/components/payDialog.vue b/src/views/caseManagement/components/payDialog.vue index 3c24e02..6655193 100644 --- a/src/views/caseManagement/components/payDialog.vue +++ b/src/views/caseManagement/components/payDialog.vue @@ -130,7 +130,7 @@ export default { handleRemove(file, fileList) { (this.submitForm.payOrderList = []), fileList.forEach((item) => { - this.submitForm.payOrderList.push({ annexId:item.response.data.annexId,annexName:item.response.data.annexName }); + this.submitForm.payOrderList.push({ annexId:item.response.annexId,annexName:item.response.annexName }); }); }, handlePreview(file) { diff --git a/src/views/caseManagement/components/paymentdetailsDialog.vue b/src/views/caseManagement/components/paymentdetailsDialog.vue index d5f3c0e..7ad9ff4 100644 --- a/src/views/caseManagement/components/paymentdetailsDialog.vue +++ b/src/views/caseManagement/components/paymentdetailsDialog.vue @@ -14,13 +14,13 @@ - +
{{ item.annexName }}
- +
{{ item.annexName }} diff --git a/src/views/caseManagement/components/respondentPay.vue b/src/views/caseManagement/components/respondentPay.vue index 0768690..38c79f1 100644 --- a/src/views/caseManagement/components/respondentPay.vue +++ b/src/views/caseManagement/components/respondentPay.vue @@ -130,7 +130,7 @@ handleRemove(file, fileList) { (this.submitForm.payOrderList = []), fileList.forEach((item) => { - this.submitForm.payOrderList.push({ annexId:item.response.data.annexId,annexName:item.response.data.annexName }); + this.submitForm.payOrderList.push({ annexId:item.response.annexId,annexName:item.response.annexName }); }); }, handlePreview(file) {