Files
ys-app/src/api/notice.js

18 lines
356 B
JavaScript
Raw Normal View History

2025-07-22 11:21:01 +08:00
import request from "@/utils/request"
// 查询通知列表
export function noticeList(data) {
return request.post({
2025-08-13 18:15:04 +08:00
url: '/acc/message/notify/detail',
2025-07-22 11:21:01 +08:00
data
})
2025-08-22 21:58:11 +08:00
}
// 获取用户审批的待办和已办详情
export function flowList(data) {
return request.post({
url: '/acc/message/flow/detail',
data
})
}