From f6c21bf19527489b43bbb65998efdd803868ced2 Mon Sep 17 00:00:00 2001
From: Teo <2642673902@qq.com>
Date: Thu, 14 Aug 2025 02:30:58 +0800
Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/design/drawing/DrawingTable.vue | 19 ++++++++++++++++---
1 file changed, 16 insertions(+), 3 deletions(-)
diff --git a/src/views/design/drawing/DrawingTable.vue b/src/views/design/drawing/DrawingTable.vue
index fac6e5e..9a76f05 100644
--- a/src/views/design/drawing/DrawingTable.vue
+++ b/src/views/design/drawing/DrawingTable.vue
@@ -35,11 +35,20 @@
-
+
+
+ {{ scope.row.fileName }}
+
+
-
+
+ 下载
+
+
@@ -112,4 +121,8 @@ const handleViewInfo = (row) => {
const handleCancelProcessApply = (id) => {
emits('cancel-process-apply', id);
};
+
+const handleDownload = (row) => {
+ proxy?.$download.oss(row.fileUrl);
+};