fix:项目初始化

This commit is contained in:
ouyangxiu
2025-06-10 17:11:41 +07:00
commit db9bffd2c5
713 changed files with 159746 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
/*
* @Author:
* @Mail:
* @Date: 2022-01-21 16:55:02
* @LastEditTime: 2022-06-10 19:23:05
* @LastEditors:
* @FilePath: /web_admin/src/api/upManagement/notice.js
*/
import request from '@/utils/request'
// 获取系统公告列表
export function getNoticeList(data) {
return request({
url: '/api/web/uploader/notice/list',
method: 'post',
filterParam: true,
data
})
}
// 更新
export function setNoticeList(data) {
return request({
url: '/api/web/uploader/notice/update',
method: 'post',
data
})
}
// 删除
export function delNoticeList(data) {
return request({
url: '/api/web/uploader/notice/del',
method: 'post',
data
})
}
// 添加
export function addNoticeList(data) {
return request({
url: '/api/web/uploader/notice/add',
method: 'post',
data
})
}