mirror of
https://gitee.com/lijingbo-2021/open-anylink-web.git
synced 2026-02-26 23:20:16 +00:00
15 lines
411 B
JavaScript
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))
|
|
}
|