diff --git a/src/api/project-manage/index.js b/src/api/project-manage/index.js
index 8faa1b3..6e6eeae 100644
--- a/src/api/project-manage/index.js
+++ b/src/api/project-manage/index.js
@@ -85,6 +85,35 @@ export const getTags = (projectId) => {
method: "get"
});
};
+export const getTagList = (projectId) => {
+ return request({
+ url: `/workflow/mosr/file/tag/list`,
+ method: "get",
+ params:{
+ projectId: projectId
+ }
+ });
+};
+export const addTag = (data) => {
+ return request({
+ url: '/workflow/mosr/file/tag/add',
+ method: "post",
+ data:data
+ });
+};
+export const updateTag = (data) => {
+ return request({
+ url: '/workflow/mosr/file/tag/update',
+ method: "post",
+ data:data
+ });
+};
+export const delTag = (tageId) => {
+ return request({
+ url: `/workflow/mosr/file/tag/${tageId}`,
+ method: "delete"
+ });
+};
export const getPhaseProcess = () => {
return request({
url: '/workflow/phase/change/process',
diff --git a/src/components/DetailComponent/ProjectAttachment.vue b/src/components/DetailComponent/ProjectAttachment.vue
index 43beee8..10e37b0 100644
--- a/src/components/DetailComponent/ProjectAttachment.vue
+++ b/src/components/DetailComponent/ProjectAttachment.vue
@@ -1,56 +1,64 @@
-
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+ 编辑
+
-
-
-
-
-
+
+
+
+
+
-
- 标签:
-
- 确定
- 取消
-
-
+
+ 标签:
+
+
+
+
+ 确定
+ 取消
+
+
@@ -314,29 +394,35 @@ onActivated(() => {
}