From ebe3507d1382bb124c1fb895a5e27f7063fdffdc Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期二, 13 一月 2026 16:19:14 +0800
Subject: [PATCH] fix: 规章制度加一个附件功能

---
 src/api/collaborativeApproval/noticeManagement.js |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/src/api/collaborativeApproval/noticeManagement.js b/src/api/collaborativeApproval/noticeManagement.js
index 0f4e8b3..aae4db7 100644
--- a/src/api/collaborativeApproval/noticeManagement.js
+++ b/src/api/collaborativeApproval/noticeManagement.js
@@ -50,3 +50,29 @@
         method: 'get',
     })
 }
+
+// 鏌ヨ鍏憡绫诲瀷鍒楄〃
+export function listNoticeType() {
+    return request({
+        url: '/noticeType/list',
+        method: 'get'
+    })
+}
+
+// 鏂板鍏憡绫诲瀷
+export function addNoticeType(data) {
+    return request({
+        url: '/noticeType/add',
+        method: 'post',
+        data: data
+    })
+}
+
+// 鍒犻櫎鍏憡绫诲瀷
+export function delNoticeType(id) {
+    return request({
+        url: '/noticeType/del',
+        method: 'delete',
+        data: { id }
+    })
+}
\ No newline at end of file

--
Gitblit v1.9.3