From 0c1e566578c3447992a28b8a1d1359d42684cae2 Mon Sep 17 00:00:00 2001 From: odjbin <1042039504@qq.com> Date: Thu, 30 May 2024 16:46:51 +0800 Subject: [PATCH] =?UTF-8?q?fix=20:=20=E4=BF=AE=E5=A4=8D=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E9=99=84=E4=BB=B6=E9=A1=B5=E9=9D=A2=E7=BB=86=E8=8A=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/project-manage/index.js | 10 +++++ .../implementation/attachment.vue | 27 ++++++++++++-- .../implementation/upload.vue | 37 +++++++++++++++---- 3 files changed, 63 insertions(+), 11 deletions(-) diff --git a/src/api/project-manage/index.js b/src/api/project-manage/index.js index d35ab80..eb54d16 100644 --- a/src/api/project-manage/index.js +++ b/src/api/project-manage/index.js @@ -76,6 +76,16 @@ export const addLedger = (data) => { data: data }); }; + +export const getTags = (projectId) => { + return request({ + url: '/workflow/mosr/project/implementation/tags', + method: "get", + params:{ + projectId:projectId + } + }); +}; //项目归档 export const getConclusionDetail = (ProjectId) => { return request({ diff --git a/src/views/project-management/implementation/attachment.vue b/src/views/project-management/implementation/attachment.vue index 577b6ea..b7a5732 100644 --- a/src/views/project-management/implementation/attachment.vue +++ b/src/views/project-management/implementation/attachment.vue @@ -1,7 +1,14 @@