消息发送-6:sessionList和消息记录

This commit is contained in:
bob
2024-09-18 20:32:35 +08:00
parent b774c989e1
commit e026e03a7f
6 changed files with 238 additions and 132 deletions

View File

@@ -4,3 +4,11 @@ import { getReqBody } from '@/api/common'
export const msgChatSessionListService = () => {
return request.post('/chat/sessionList', getReqBody())
}
export const msgUpdateSessionService = (obj) => {
return request.post('/chat/updateSession', getReqBody(obj))
}
export const msgChatPullMsgService = (obj) => {
return request.post('/chat/pullMsg', getReqBody(obj))
}