唐简:提交新分支

This commit is contained in:
Jim__TT
2023-11-20 21:24:43 +08:00
parent c1ae6a9e31
commit f6889ac3df
12 changed files with 2090 additions and 137 deletions

23
src/api/system/notice.ts Normal file
View File

@@ -0,0 +1,23 @@
import request from "../../utils/request";
export const getNoticeListApi = (params: any) => {
return request({
url: "/notice/notify",
method: "get",
params,
});
};
export const getNoticeInfoApi = (id: number) => {
return request({
url: "/notice/notify/" + id,
method: "get",
});
};
export const deleteNoticeInfoApi = (id: number) => {
return request({
url: "/notice/notify/" + id,
method: "delete",
});
};