From 47c1d29ef22bac1d48df1272f21f6f8a7ba7b43d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=98=B1=E8=BE=BE?= Date: Sun, 28 Sep 2025 17:50:13 +0800 Subject: [PATCH] =?UTF-8?q?feat(app):=20=E6=B7=BB=E5=8A=A0AI=20Call?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E6=8E=A7=E5=88=B6=E5=8A=9F=E8=83=BD-=20?= =?UTF-8?q?=E5=9C=A8app=E6=A8=A1=E5=9D=97=E4=B8=AD=E6=96=B0=E5=A2=9EshowAI?= =?UTF-8?q?Call=E7=8A=B6=E6=80=81=E7=94=A8=E4=BA=8E=E6=8E=A7=E5=88=B6AI=20?= =?UTF-8?q?Call=E7=BB=84=E4=BB=B6=E6=98=BE=E7=A4=BA=20-=20=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=AF=B9=E5=BA=94=E7=9A=84mutation=E5=92=8Caction?= =?UTF-8?q?=E6=9D=A5=E4=BF=AE=E6=94=B9showAICall=E7=8A=B6=E6=80=81=20-=20?= =?UTF-8?q?=E5=9C=A8App.vue=E4=B8=AD=E5=BC=95=E5=85=A5=E5=B9=B6=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6=E6=B8=B2=E6=9F=93AICall=E7=BB=84=E4=BB=B6=20-=20?= =?UTF-8?q?=E6=96=B0=E5=A2=9EAICaseConsult=E7=BB=84=E4=BB=B6=E7=94=A8?= =?UTF-8?q?=E4=BA=8E=E8=A7=A6=E5=8F=91AI=20Call=E6=98=BE=E7=A4=BA=20-=20?= =?UTF-8?q?=E5=9C=A8Detail.vue=E9=A1=B5=E9=9D=A2=E4=B8=AD=E9=9B=86?= =?UTF-8?q?=E6=88=90AICaseConsult=E7=BB=84=E4=BB=B6-=E4=BF=AE=E5=A4=8Dsend?= =?UTF-8?q?Message.vue=E4=B8=ADconversationId=E7=9A=84sessionStorage?= =?UTF-8?q?=E5=AD=98=E5=82=A8=E9=97=AE=E9=A2=98=20-=20=E8=B0=83=E6=95=B4AI?= =?UTF-8?q?Call.vue=E7=BB=84=E4=BB=B6=E7=9A=84=E7=AA=97=E5=8F=A3=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 29 +++++++-- src/store/modules/app.js | 14 ++++- src/views/portal/case/AICall.vue | 2 +- src/views/portal/case/Detail.vue | 4 +- .../portal/case/components/AICaseConsult.vue | 63 +++++++++++++++++++ .../portal/case/components/sendMessage.vue | 1 + 6 files changed, 103 insertions(+), 10 deletions(-) create mode 100644 src/views/portal/case/components/AICaseConsult.vue diff --git a/src/App.vue b/src/App.vue index d3bdee6f..18c73b94 100644 --- a/src/App.vue +++ b/src/App.vue @@ -2,18 +2,36 @@
+ 12312 + +
+ + \ No newline at end of file diff --git a/src/views/portal/case/components/sendMessage.vue b/src/views/portal/case/components/sendMessage.vue index c56983fa..aedfd120 100644 --- a/src/views/portal/case/components/sendMessage.vue +++ b/src/views/portal/case/components/sendMessage.vue @@ -230,6 +230,7 @@ export default { // 从响应中获取并保存conversationId if (jsonData.conversationId) { this.conversationId = jsonData.conversationId; + sessionStorage.setItem('conversationId', jsonData.conversationId); } break;