소스 검색

Merge remote-tracking branch 'origin/master'

zyy 21 시간 전
부모
커밋
abd9b38260
3개의 변경된 파일370개의 추가작업 그리고 268개의 파일을 삭제
  1. 8 10
      src/api/aiChat/aiChatSession.js
  2. 3 3
      src/api/crm/customerAnalyze.js
  3. 359 255
      src/views/crm/customerAiChat/index.vue

+ 8 - 10
src/api/aiChat/aiChatSession.js

@@ -51,16 +51,14 @@ export function pinChatSession(sessionId, isPinned) {
         data: { sessionId, isPinned }
     })
 }
-
-
-
-
-
-
-
-
-
-
+//获取AI回复
+export function getAiReply(data) {
+    return request({
+        url: '/crm/customer/chat/chatSession/polishingScript',
+        method: 'post',
+        data: data
+    })
+}
 
 // 获取消息列表(分页,带时间游标)
 export function getChatMessageList(query) {

+ 3 - 3
src/api/crm/customerAnalyze.js

@@ -9,11 +9,11 @@ export function listAnalyze(query) {
   })
 }
 // 查询客户聊天记录分析列表
-export function listAllAnalyze(query) {
+export function listAllAnalyze(data) {
     return request({
         url: '/crm/analyze/listAll',
-        method: 'get',
-        params: query
+        method: 'post',
+        data: data
     })
 }
 

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 359 - 255
src/views/crm/customerAiChat/index.vue


이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.