From e185c4679c7a0742345fde1bdef840dcd91486c3 Mon Sep 17 00:00:00 2001 From: no99 <17663930442@163.com> Date: Sat, 16 Aug 2025 15:39:45 +0800 Subject: [PATCH] =?UTF-8?q?1.app=E6=89=8B=E6=9C=BA=E8=BF=94=E5=9B=9E?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E5=BC=82=E5=B8=B8=EF=BC=9B=202.app=E5=8E=86?= =?UTF-8?q?=E5=8F=B2=E8=AE=B0=E5=BD=95=E6=98=AF=E8=82=A1=E7=A5=A8=E5=90=8D?= =?UTF-8?q?=E7=A7=B0(=E8=82=A1=E7=A5=A8=E4=BB=A3=E7=A0=81)=203.375?= =?UTF-8?q?=E5=AE=BD=E5=BA=A6=E5=B0=8F=E6=89=8B=E6=9C=BA=E9=87=91=E7=89=9B?= =?UTF-8?q?=E5=9B=BE=E8=A1=A8=E9=80=82=E9=85=8D=204.=E5=85=AD=E8=89=B2?= =?UTF-8?q?=E7=BD=97=E7=9B=98=E5=A4=A7=E5=B0=8F=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/AIchat.vue | 18 ++++++++++++------ src/views/components/HistoryRecord.vue | 3 ++- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/src/views/AIchat.vue b/src/views/AIchat.vue index f0ffef9..6b5025b 100644 --- a/src/views/AIchat.vue +++ b/src/views/AIchat.vue @@ -1065,7 +1065,7 @@ watch( if (newVal.length > 0) { // 清理语音下标 console.log("chatStore.currentUserIndex", chatStore.currentUserIndex); - if (chatStore.currentUserIndex!=null) { + if (chatStore.currentUserIndex != null) { chatStore.messages[chatStore.currentUserIndex].audioStatus = false; } chatStore.currentUserIndex = null; @@ -2467,7 +2467,7 @@ watch( chatStore.messages.push({ sender: "user", timestamp: clickRecord.value.createdTime, - content: clickRecord.value.keyword, + content: clickRecord.value.stockName+'('+clickRecord.value.stockCode+')', audioArray: [ clickRecord.value.wokeFlowData.One.url, clickRecord.value.wokeFlowData.Two.url, @@ -2814,7 +2814,7 @@ function KlineCanvsEcharts(containerId) { name: "\u4eea\u8868\u76d8", type: "gauge", center: ["50%", "50%"], - radius: "90%", + radius: window.innerWidth > 768 ? "90%" : "70%", startAngle: 140, endAngle: -140, min: 0, @@ -3515,7 +3515,9 @@ function KlineCanvsEcharts(containerId) { ? "14%" : window.innerWidth > 768 ? "18%" - : "20%", + : window.innerWidth > 375 + ? "20%" + : "22%", right: window.innerWidth > 1024 ? "9%" @@ -3533,7 +3535,9 @@ function KlineCanvsEcharts(containerId) { ? "14%" : window.innerWidth > 768 ? "18%" - : "20%", + : window.innerWidth > 375 + ? "20%" + : "22%", right: window.innerWidth > 1024 ? "9%" @@ -3551,7 +3555,9 @@ function KlineCanvsEcharts(containerId) { ? "14%" : window.innerWidth > 768 ? "18%" - : "20%", + : window.innerWidth > 375 + ? "20%" + : "22%", right: window.innerWidth > 1024 ? "9%" diff --git a/src/views/components/HistoryRecord.vue b/src/views/components/HistoryRecord.vue index 054d7a1..e0d0cbd 100644 --- a/src/views/components/HistoryRecord.vue +++ b/src/views/components/HistoryRecord.vue @@ -259,7 +259,8 @@