调整样式修改

This commit is contained in:
daihh
2022-11-10 17:09:34 +08:00
parent 329a793fb6
commit 9c03f79f57
4 changed files with 49 additions and 16 deletions

View File

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