You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
620 B
20 lines
620 B
import { defHttp } from '/@/utils/http/axios'
|
|
import { PageResultModel } from '/@/api/model/baseModel'
|
|
|
|
export const getChatMessagePage = (params: any) =>
|
|
defHttp.get<PageResultModel<any>>({
|
|
url: '/dating-agency-cim/user/page/room-content-abstract/by/operator',
|
|
params,
|
|
})
|
|
|
|
export const getChatMessageRoomList = (params: any) =>
|
|
defHttp.get<PageResultModel<any>>({
|
|
url: '/dating-agency-cim/user/page/room',
|
|
params,
|
|
})
|
|
|
|
export const getChatRoomMessageList = (params: any) =>
|
|
defHttp.get<PageResultModel<any>>({
|
|
url: '/dating-agency-cim/user/page/room-content-record/by/operator',
|
|
params,
|
|
})
|