消息页面

This commit is contained in:
zhaofang
2022-11-10 16:28:15 +08:00
parent b4493ca981
commit 65657fe239
3 changed files with 246 additions and 22 deletions

View File

@@ -45,12 +45,12 @@ const updateIsRead=function(ids){
/**把当前人所有未读消息设置为已读*/
const readAll=function(){
return ajax.postJson('/xboe/sys/message/readall')
return ajax.get('/xboe/sys/message/readall')
}
/**清空当前人的接收到的所有的消息*/
const cleanAll=function(){
return ajax.postJson('/xboe/sys/message/clearall')
return ajax.get('/xboe/sys/message/clearall')
}
export default{