chat.js 479 B

12345678910111213141516171819
  1. // 客服聊天相关接口
  2. import { get, post } from '@/core/http/http-client'
  3. /** 发送客服问候消息 */
  4. export async function sendChatHello(params) {
  5. return post('/wanlshop/chat/hello', params)
  6. }
  7. /** 发送客服聊天消息 */
  8. export async function sendChatMessage(params) {
  9. return post('/wanlshop/chat/service', params)
  10. }
  11. /** 获取上传配置 */
  12. export async function getUploadConfig() {
  13. const { data } = await get('/wanlshop/common/uploadData')
  14. return data
  15. }