123456789101112131415161718 |
- // 客服上传图片
- const tinyServiceUploadFile = '/tiny-service/v1/common/file/images';
- // 客服配置
- const questionsIndex = '/tiny-service/v1/questions/index';
- // 问题详情
- const questionsView = '/tiny-service/v1/questions/view';
- // 请求路由
- // 当前会话历史消息
- const memberConversation = 'member.conversation';
- export {
- tinyServiceUploadFile,
- questionsIndex,
- questionsView,
- memberConversation
- };
|