From 3a8ee80767b3127b06da22374fbe3c214ed171ba Mon Sep 17 00:00:00 2001 From: zzyuan <781948537@qq.com> Date: Wed, 26 Nov 2025 17:26:40 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=86=E7=94=A8=E7=94=B3=E8=AF=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../certificateExam/index.vue | 31 ++++++++++++++++-- .../certificateRequest/index.vue | 32 +++++++++++++++++-- .../remoteVerificationTask/index.vue | 4 +-- 3 files changed, 61 insertions(+), 6 deletions(-) diff --git a/src/views/certificate/certificateReturnManage/certificateExam/index.vue b/src/views/certificate/certificateReturnManage/certificateExam/index.vue index 5c0f527..4408a56 100644 --- a/src/views/certificate/certificateReturnManage/certificateExam/index.vue +++ b/src/views/certificate/certificateReturnManage/certificateExam/index.vue @@ -69,7 +69,7 @@ @@ -216,6 +216,17 @@ 拒 绝 取 消 + + + +
+
+ {{ item.name }} +
+
+
@@ -328,7 +339,8 @@ }, fileList:[], fileUrls:[], - fileNames:[] + fileNames:[], + openFile:false }; }, mounted(){ @@ -521,6 +533,21 @@ document.body.removeChild(link); // 下载后移除 元素 } }, + checkFile(row){ + this.fileList=[] + this.fileUrls=[] + this.fileNames = [] + if(row.fileUrl&&row.fileUrl!=''){ + let arr = row.fileUrl.split(","); + let arr2 = row.fileName.split(","); + arr.forEach((item,index)=>{ + this.fileList.push({url:item,name:arr2[index]}) + this.fileUrls.push(item) + this.fileNames.push(arr2[index]) + }) + } + this.openFile = true + }, /** 批量删除 */ handleBatchDel(){ diff --git a/src/views/certificate/certificateReturnManage/certificateRequest/index.vue b/src/views/certificate/certificateReturnManage/certificateRequest/index.vue index 648196b..92215e9 100644 --- a/src/views/certificate/certificateReturnManage/certificateRequest/index.vue +++ b/src/views/certificate/certificateReturnManage/certificateRequest/index.vue @@ -77,7 +77,7 @@ @@ -285,6 +285,17 @@ 取 消 + + +
+
+ {{ item.name }} +
+
+ +
@@ -401,7 +412,8 @@ }, fileList:[], fileUrls:[], - fileNames:[] + fileNames:[], + openFile:false }; }, mounted(){ @@ -438,6 +450,7 @@ } getCertificateApplyListPageApi(param).then(response => { this.tableListData = response.rows; + this.total = Number(response.total); this.loading = false; }); @@ -660,6 +673,21 @@ document.body.removeChild(link); // 下载后移除
元素 } }, + checkFile(row){ + this.fileList=[] + this.fileUrls=[] + this.fileNames = [] + if(row.fileUrl&&row.fileUrl!=''){ + let arr = row.fileUrl.split(","); + let arr2 = row.fileName.split(","); + arr.forEach((item,index)=>{ + this.fileList.push({url:item,name:arr2[index]}) + this.fileUrls.push(item) + this.fileNames.push(arr2[index]) + }) + } + this.openFile = true + }, /** 批量删除 */ handleBatchDel(){ diff --git a/src/views/certificate/remoteVerification/remoteVerificationTask/index.vue b/src/views/certificate/remoteVerification/remoteVerificationTask/index.vue index b0d9ac1..ddd60d3 100644 --- a/src/views/certificate/remoteVerification/remoteVerificationTask/index.vue +++ b/src/views/certificate/remoteVerification/remoteVerificationTask/index.vue @@ -66,8 +66,8 @@ --> - - + +