新增消息列表

This commit is contained in:
2023-09-27 15:16:08 +08:00
parent b0fea79781
commit 5ada449282
10 changed files with 514 additions and 4 deletions

View File

@@ -13,3 +13,16 @@ export function getUserInfo() {
url: "/user/getUserInfoByToken",
});
}
/**
* 获取消息列表
* @param {*} params
* @returns
*/
export function getNotices(params) {
return request({
method: 'get',
url: '/notification/page',
params
})
}