From 397c319ba164430d8538cc71648393ff41c00da2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Fri, 10 Oct 2025 11:53:10 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E6=B7=B1=E5=BA=A6=E4=B9=9D=E5=A4=A7?= =?UTF-8?q?=E6=A8=A1=E5=9E=8B=E5=88=86=E5=BC=80=E5=9B=BE=E6=A0=87=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/DeepNineModel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/DeepNineModel.vue b/src/views/DeepNineModel.vue index 082a367..7ce9f17 100644 --- a/src/views/DeepNineModel.vue +++ b/src/views/DeepNineModel.vue @@ -193,7 +193,7 @@ const closeNoPermissionDialog = () => { align-items: center; justify-content: center; /* 添加水平居中 */ - /* gap: 23px; */ + gap: 23px; margin-bottom: 10px; flex-wrap: wrap; /* 添加换行支持,防止小屏幕溢出 */ From 0502fab34efd96c9e4f00f94222656548c2f9e99 Mon Sep 17 00:00:00 2001 From: no99 <17663930442@163.com> Date: Fri, 10 Oct 2025 13:18:53 +0800 Subject: [PATCH 2/6] =?UTF-8?q?=E5=8E=86=E5=8F=B2=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E6=8E=A5=E5=8F=A3=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/deepNine.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/deepNine.vue b/src/views/deepNine.vue index 4b44902..c654723 100644 --- a/src/views/deepNine.vue +++ b/src/views/deepNine.vue @@ -2025,7 +2025,7 @@ watch( content: pc1, }); - const nineTurns = clickRecord.value.stockData.data; + const nineTurns = clickRecord.value.stockData; // 度牛尺K线图 if ( nineTurns && From 144d8afc3740343711890322c38cc4bfecfc7a68 Mon Sep 17 00:00:00 2001 From: no99 <17663930442@163.com> Date: Fri, 10 Oct 2025 14:06:10 +0800 Subject: [PATCH 3/6] =?UTF-8?q?1.=E5=9C=A8=E5=A4=BA=E5=AE=9D=E5=A5=87?= =?UTF-8?q?=E5=85=B5=E5=A4=A7=E6=A8=A1=E5=9E=8B=E7=82=B9=E5=87=BB=E5=8E=86?= =?UTF-8?q?=E5=8F=B2=E8=AE=B0=E5=BD=95=E5=90=8E=EF=BC=8C=E5=86=8D=E5=88=87?= =?UTF-8?q?=E6=8D=A2=E5=88=B0=E6=B7=B1=E5=BA=A6=E4=B9=9D=E5=A4=A7=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B=E4=BC=9A=E6=8A=A5=E9=94=99=E7=9A=84=E9=97=AE=E9=A2=98?= =?UTF-8?q?=E7=9A=84=E8=A7=A3=E5=86=B3=202.=E6=B7=B1=E5=BA=A6=E4=B9=9D?= =?UTF-8?q?=E5=A4=A7=E6=A8=A1=E5=9E=8B=E7=82=B9=E5=87=BB=E5=8E=86=E5=8F=B2?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E5=90=8E=EF=BC=8C=E6=BB=9A=E5=8A=A8=E5=88=B0?= =?UTF-8?q?=E9=A1=B6=E9=83=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components/HistoryRecord.vue | 8 ++++++-- src/views/deepNine.vue | 1 + src/views/homePage.vue | 13 ++++++++++++- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/src/views/components/HistoryRecord.vue b/src/views/components/HistoryRecord.vue index 8d1c1a6..b9d59a5 100644 --- a/src/views/components/HistoryRecord.vue +++ b/src/views/components/HistoryRecord.vue @@ -750,8 +750,12 @@ const selectRecord = async (record) => { } dataStore.isFeedback = false; historyData.value = result.data; - chatStore.dbqbClickRecord = historyData.value; - deepNineStore.dbqbClickRecord = historyData.value; + if (props.currentType == "AIchat") { + chatStore.dbqbClickRecord = historyData.value; + } + if (props.currentType == "deepNine") { + deepNineStore.dbqbClickRecord = historyData.value; + } // 构造股票数据对象,保持与现有结构一致 const stockData = { queryText: result.data.keyword, // 使用记录中的keyword字段作为查询文本 diff --git a/src/views/deepNine.vue b/src/views/deepNine.vue index c654723..fc073bf 100644 --- a/src/views/deepNine.vue +++ b/src/views/deepNine.vue @@ -2181,6 +2181,7 @@ watch( content: "该内容由AI生成,请注意甄别", end: true, }); + } catch (e) { ElMessage.error("历史数据获取出错!"); console.error("e", e); diff --git a/src/views/homePage.vue b/src/views/homePage.vue index 2ed67b4..83974ff 100644 --- a/src/views/homePage.vue +++ b/src/views/homePage.vue @@ -820,7 +820,7 @@ watch( }, { deep: false, immediate: true } ); - +// 监听-当点击夺宝奇兵大模型的历史记录时,滚动到顶部 watch( () => chatStore.dbqbClickRecord, async (newValue, oldValue) => { @@ -831,6 +831,17 @@ watch( container.scrollTop = 0; } ); +// 监听-当点击深度九大模型的历史记录时,滚动到顶部 +watch( + () => deepNineStore.dbqbClickRecord, + async (newValue, oldValue) => { + const container = getCurrentScrollContainer(); + if (!container) return; + + await nextTick(); // 确保在DOM更新后执行 + container.scrollTop = 0; + } +); watch( () => chatStore.dbqbScrollToTop, From de76bd66773a562bf6b5b5a69472998475346cb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Fri, 10 Oct 2025 14:24:47 +0800 Subject: [PATCH 4/6] =?UTF-8?q?=E6=B7=B1=E5=BA=A6=E4=B9=9D=E5=A4=A7?= =?UTF-8?q?=E6=A8=A1=E5=9E=8B=E4=B8=BB=E9=A1=B5logo=E5=B1=85=E4=B8=AD?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/deepNine.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/deepNine.vue b/src/views/deepNine.vue index ae8e0e6..1142328 100644 --- a/src/views/deepNine.vue +++ b/src/views/deepNine.vue @@ -3571,7 +3571,7 @@ p { } .gif-area { - padding: 70px 0px; + padding: 100px 0px; position: relative; /* height: 30vh; */ display: flex; From f004ce10ced145a6256f0431ab1ba67e9fa09fa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Fri, 10 Oct 2025 14:27:54 +0800 Subject: [PATCH 5/6] =?UTF-8?q?=E6=B7=B1=E5=BA=A6=E4=B9=9D=E5=A4=A7?= =?UTF-8?q?=E6=A8=A1=E5=9E=8B=E4=B8=BB=E9=A1=B5logo=E5=B1=85=E4=B8=AD?= =?UTF-8?q?=E3=80=82=E6=89=8B=E6=9C=BA=E7=AB=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/deepNine.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/deepNine.vue b/src/views/deepNine.vue index 1142328..bdf08ec 100644 --- a/src/views/deepNine.vue +++ b/src/views/deepNine.vue @@ -4021,7 +4021,7 @@ p { @media (max-width: 768px) { .gif-area { - padding: 0px 0px; + padding: 40px 0px; position: relative; /* height: 30vh; */ display: flex; From 718a5481938cd3073d278250a647172194c0e74d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Fri, 10 Oct 2025 14:30:49 +0800 Subject: [PATCH 6/6] =?UTF-8?q?=E6=B7=B1=E5=BA=A6=E4=B9=9D=E5=89=8D?= =?UTF-8?q?=E7=BD=AE=E9=A1=B5=E9=9D=A2=E2=80=9C=E5=BC=80=E5=90=AF=E8=B4=A2?= =?UTF-8?q?=E8=BF=90=E2=80=9D=E6=94=BE=E5=A4=A7=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/DeepNineModel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/DeepNineModel.vue b/src/views/DeepNineModel.vue index 7ce9f17..ddccb77 100644 --- a/src/views/DeepNineModel.vue +++ b/src/views/DeepNineModel.vue @@ -312,7 +312,7 @@ const closeNoPermissionDialog = () => { } .btn-item img { - width: 50%; + width: 70%; /* margin-top: 20px; */ } }