first commit

This commit is contained in:
chenzhen
2025-07-22 11:21:01 +08:00
commit 09d0e316e1
164 changed files with 7907 additions and 0 deletions

9
src/api/notice.js Normal file
View File

@@ -0,0 +1,9 @@
import request from "@/utils/request"
// 查询通知列表
export function noticeList(data) {
return request.post({
url: '/api/noticeList',
data
})
}