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);
+};