feat:修改客服

This commit is contained in:
2026-07-27 15:14:36 +08:00
parent 7fa29cf312
commit bfc7816dca
2 changed files with 14 additions and 11 deletions
@@ -46,10 +46,11 @@ export function getCurrentMember() {
}
export function getMessages({ userId, conversationId, page = 1, pageSize = 80 }) {
const data = conversationId ? { userId, conversationId, page, pageSize } : { userId, page, pageSize }
return kefuRequest({
url: '/kefu/user/messages',
method: 'get',
data: { userId, conversationId, page, pageSize }
data: data
}).then(result => result.data || {})
}