Files
open-anylink-web/src/api/message.js

15 lines
411 B
JavaScript

import request from '@/utils/request'
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))
}