From 42f6046d8acbffe8ea3fd3649ed29fdb7283843e Mon Sep 17 00:00:00 2001 From: hhl123456789 <3118891075@qq.com> Date: Sun, 1 Oct 2023 18:27:55 +0800 Subject: [PATCH] =?UTF-8?q?'=E6=96=87=E4=BB=B6=E8=AF=A6=E6=83=85=E9=A2=84?= =?UTF-8?q?=E8=A7=88=E6=96=87=E4=BB=B6=E6=98=BE=E7=A4=BA=E4=B8=8D=E7=AC=A6?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/caseentryDialog.vue | 28 ++++++++++++++----- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/src/views/caseManagement/components/caseentryDialog.vue b/src/views/caseManagement/components/caseentryDialog.vue index e4f1768..adfb6d2 100644 --- a/src/views/caseManagement/components/caseentryDialog.vue +++ b/src/views/caseManagement/components/caseentryDialog.vue @@ -148,7 +148,7 @@ >
- {{ item }} + {{ item.annexName }}
@@ -163,8 +163,8 @@ " >
- - {{ item }} + + {{ item.annexName }}
@@ -798,11 +798,18 @@ export default { this.form3.paymentArr1 = this.initpaymentArr1; console.log(this.caseAttachList, "caseAttachList"); this.caseAttachList.forEach((item) => { + console.log(item, "iytem"); if (item.annexType == 2) { - this.applicateArr.push(item.annexName); + this.applicateArr.push({ + annexName: item.annexName, + annexPath: item.annexPath, + }); } if (item.annexType == 6) { - this.quiltArr.push(item.annexName); + this.quiltArr.push({ + annexName: item.annexName, + annexPath: item.annexPath, + }); } }); this.fileList = this.caseAttachList; @@ -1006,10 +1013,17 @@ export default { } }); }, - // 详情显示,展示案件文件 + // 详情显示,展示申请人案件文件 toFile(item, index) { window.open( - window.location.origin + "/API" + this.caseAttachList[index].annexPath, + window.location.origin + "/API" + this.applicateArr[index].annexPath, + "_black" + ); + }, + // 被申请人文件 + toFile1(item, index) { + window.open( + window.location.origin + "/API" + this.quiltArr[index].annexPath, "_black" ); }, -- 2.54.0