wip: 🚧 通知公告临时提交

通知公告临时提交
This commit is contained in:
胡少翔
2024-09-12 18:10:38 +08:00
parent 27e7b912af
commit f34df2bb40
3 changed files with 19 additions and 171 deletions

View File

@@ -132,6 +132,14 @@ class NoticeAPI {
method: "PATCH",
});
}
static getMyNoticePage(queryParams?: NoticePageQuery) {
return request<any, PageResult<NoticePageVO[]>>({
url: `${NOTICE_BASE_URL}/my/page`,
method: "get",
params: queryParams,
});
}
}
export default NoticeAPI;