实现消息删除功能

This commit is contained in:
bob
2025-04-29 18:02:11 +08:00
parent f88b6a0388
commit 58e46fa09f
3 changed files with 33 additions and 6 deletions

View File

@@ -16,6 +16,10 @@ export const msgChatRevokeMsgService = (obj) => {
return request.post('/chat/revokeMsg', obj)
}
export const msgChatDeleteMsgService = (obj) => {
return request.post('/chat/deleteMsg', obj)
}
export const msgAtService = () => {
return request.get('/chat/queryAt')
}