websocket.js 425 B

123456789101112131415161718
  1. // 客服上传图片
  2. const tinyServiceUploadFile = '/tiny-service/v1/common/file/images';
  3. // 客服配置
  4. const questionsIndex = '/tiny-service/v1/questions/index';
  5. // 问题详情
  6. const questionsView = '/tiny-service/v1/questions/view';
  7. // 请求路由
  8. // 当前会话历史消息
  9. const memberConversation = 'member.conversation';
  10. export {
  11. tinyServiceUploadFile,
  12. questionsIndex,
  13. questionsView,
  14. memberConversation
  15. };