From f6713dcdf14b0e6c52568d8fd90fb0501ecc4776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Thu, 30 Oct 2025 17:27:19 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E6=94=B9=E4=B8=BA=E9=9B=B7=E8=BE=BE?= =?UTF-8?q?=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/home/home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/home/home.vue b/pages/home/home.vue index 3b0e786..f12c432 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -61,7 +61,7 @@ - 主力资达 + 主力雷达 From 6f95dc8beda2d02965a33256361bcfa34cf3e1b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Thu, 30 Oct 2025 20:58:44 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E5=88=9B=E5=BB=BA=E6=9C=BA=E6=9E=84?= =?UTF-8?q?=E5=8A=A8=E5=90=91=E7=AE=80=E6=8A=A5=E9=A1=B5=E9=9D=A2=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 7 ++++ pages/notFoundBriefing/notFoundBriefing.vue | 55 +++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 pages/notFoundBriefing/notFoundBriefing.vue diff --git a/pages.json b/pages.json index bcb036c..35e10c6 100644 --- a/pages.json +++ b/pages.json @@ -361,6 +361,13 @@ "navigationStyle": "custom" } } + }, + { + "path" : "pages/notFoundBriefing/notFoundBriefing", + "style" : + { + "navigationBarTitleText" : "机构动向简报" + } } ], diff --git a/pages/notFoundBriefing/notFoundBriefing.vue b/pages/notFoundBriefing/notFoundBriefing.vue new file mode 100644 index 0000000..bd8dc48 --- /dev/null +++ b/pages/notFoundBriefing/notFoundBriefing.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file From 9b40a9ef94eecc16793e98b32985a7c3c70d396f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Thu, 30 Oct 2025 21:05:22 +0800 Subject: [PATCH 3/8] =?UTF-8?q?=E5=8A=A0=E5=85=A5=E6=9C=BA=E6=9E=84?= =?UTF-8?q?=E5=8A=A8=E5=90=91=E7=AE=80=E6=8A=A5=E7=9A=84=E8=B7=B3=E8=BD=AC?= =?UTF-8?q?=E9=80=BB=E8=BE=91=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/home/home.vue | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pages/home/home.vue b/pages/home/home.vue index f12c432..d8f9f5a 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -124,7 +124,7 @@ 机构动向简报 - + {{report.stock}} {{report.status}} @@ -472,6 +472,13 @@ export default { }) }, + // 跳转到缺省页面(机构动向简报点击) + goToNotFoundBriefing(report) { + uni.navigateTo({ + url: '/pages/notFoundBriefing/notFoundBriefing' + }) + }, + // 处理游客登录成功事件 handleVisitorLoginSuccess(data) { console.log('收到游客登录成功事件:', data) From 4488f590cd25176356dc0fc15d548bbafe1a42e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Thu, 30 Oct 2025 21:13:14 +0800 Subject: [PATCH 4/8] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=85=8D=E8=B4=A3?= =?UTF-8?q?=E5=A3=B0=E6=98=8E=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/home/home.vue | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pages/home/home.vue b/pages/home/home.vue index d8f9f5a..2a0e913 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -133,6 +133,9 @@ + + 以上数据由AI生成,不作为最终投资建议,决策需独立! + @@ -1977,6 +1980,19 @@ export default { padding: 5px; } +.disclaimer { + text-align: center; + padding: 8px 10px; + margin-top: 5px; + border-radius: 4px; +} + +.disclaimer-text { + font-size: 11px; + color: grey; + line-height: 1.4; +} + /* 底部空间 */ .bottom-space { height: 60px; From 735e6d300ff93738896093770931df7c78f96b2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Thu, 30 Oct 2025 21:27:25 +0800 Subject: [PATCH 5/8] =?UTF-8?q?placeholder=E6=96=87=E5=AD=97=E5=A4=84?= =?UTF-8?q?=E7=90=86=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/DeepMate.vue | 37 +++++++++++++++++++++++++++++++++---- 1 file changed, 33 insertions(+), 4 deletions(-) diff --git a/components/DeepMate.vue b/components/DeepMate.vue index d7a0f67..586dbd1 100644 --- a/components/DeepMate.vue +++ b/components/DeepMate.vue @@ -38,6 +38,7 @@ class="stock-input" type="text" placeholder="请输入股票代码/名称,获取AI洞察" + placeholder-style="color:#fff;opacity:1" v-model="inputValue" @confirm="handleSend" /> @@ -196,16 +197,20 @@ .stock-input { flex: 1; height: 36px; - font-size: 14px; + font-size: 13px; color: #ffffff; - padding: 0 10px; + padding: 0 8px; border: none; background-color: transparent; + min-width: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } -.stock-input::placeholder { +/* .stock-input::placeholder { color: rgba(255, 255, 255, 0.8); -} +} */ .send-button-container { display: flex; @@ -278,4 +283,28 @@ opacity: 0; } } + +/* 小屏幕设备优化 */ +@media screen and (max-width: 375px) { + .stock-input { + font-size: 12px; + padding: 0 6px; + } + + .deepmate-action { + padding: 6px 12px; + } +} + +/* 超小屏幕设备优化 */ +@media screen and (max-width: 320px) { + .stock-input { + font-size: 11px; + padding: 0 4px; + } + + .deepmate-action { + padding: 5px 10px; + } +} \ No newline at end of file From b893f00ff88b7896b8b1e1e7a33272480fad23df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Thu, 30 Oct 2025 21:32:13 +0800 Subject: [PATCH 6/8] =?UTF-8?q?=E6=99=A8=E6=8A=A5=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E5=B1=95=E7=A4=BA3=E6=9D=A1=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/DeepMate.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/DeepMate.vue b/components/DeepMate.vue index 586dbd1..2891c1e 100644 --- a/components/DeepMate.vue +++ b/components/DeepMate.vue @@ -26,12 +26,12 @@ 市场风险提示 - + Date: Fri, 31 Oct 2025 10:29:54 +0800 Subject: [PATCH 7/8] =?UTF-8?q?=E9=80=89=E8=82=A1=E7=AD=96=E7=95=A5?= =?UTF-8?q?=E5=AF=B9=E5=BA=94=E6=A8=A1=E5=9D=97=E8=B7=B3=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/deepExploration/deepExploration.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/deepExploration/deepExploration.vue b/pages/deepExploration/deepExploration.vue index f523971..b29b807 100644 --- a/pages/deepExploration/deepExploration.vue +++ b/pages/deepExploration/deepExploration.vue @@ -46,7 +46,7 @@ - + @@ -75,7 +75,7 @@ - + From 5a2e264d51c8bf6257590c25c2956b7e0c4d3094 Mon Sep 17 00:00:00 2001 From: lihui Date: Fri, 31 Oct 2025 10:30:50 +0800 Subject: [PATCH 8/8] =?UTF-8?q?fix=EF=BC=9A=E7=99=BB=E5=BD=95=E4=B9=9F?= =?UTF-8?q?=E6=97=A0=E6=B3=95=E7=82=B9=E5=87=BB=E5=88=86=E4=BA=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/home/member.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/home/member.vue b/pages/home/member.vue index 988b972..3c02820 100644 --- a/pages/home/member.vue +++ b/pages/home/member.vue @@ -129,8 +129,8 @@ const goToAbout = () => { } const goToShare = () => { - console.log('用户信息==========',userInfoRes.value.data) - if (!userInfoRes.value.data) { + console.log('用户信息==========',userStore.userInfo.isVisitor) + if (userStore.userInfo.isVisitor) { uni.showToast({ title: '请先登录', icon: 'none'