Xazn-app/apis/modules/notice.js

11 lines
268 B
JavaScript
Raw Normal View History

2025-05-22 16:37:43 +08:00
const http = uni.$u.http;
// 查询公告列表
export function getNoticeList (datas) {
return http.get('/system/notice/list', { params: datas })
}
// 查询公告详情
export function getNoticedDetail (noticeId) {
return http.get('/system/notice/' + noticeId);
}