From a6a8e49af8c8172f4209dd94e65f53f17825cc44 Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: 星期四, 21 十一月 2024 17:30:12 +0800
Subject: [PATCH] 项目管理

---
 src/api/backManage/notice.js |   14 ++++++++++++--
 1 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/src/api/backManage/notice.js b/src/api/backManage/notice.js
index cda746e..585c1b3 100644
--- a/src/api/backManage/notice.js
+++ b/src/api/backManage/notice.js
@@ -1,9 +1,11 @@
 import request from '@/utils/request'
 
-export function getNoticeList() {
+export function getNoticeList(params) {
     return request({
         url: '/system/notice/noticeList',
-        method: 'get'
+        method: 'get',
+        params: params
+
     })
 }
 
@@ -38,3 +40,11 @@
     })
 }
 
+export function upload(data) {
+    return request({
+        url: '/system/common/uploadFile',
+        method: 'post',
+        data
+    })
+}
+

--
Gitblit v1.9.2