From 53d84192e0272a5ad8c3feaab53aad062d68adbc Mon Sep 17 00:00:00 2001
From: wangyetao <2898314561@qq.com>
Date: Thu, 23 Oct 2025 19:04:05 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AE=8C=E5=96=84deepmate?=
=?UTF-8?q?=E9=A1=B5=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages.json | 8 +++
pages/blank/blank.vue | 23 +++++++
pages/deepMate/deepMate.vue | 142 ++++++++++++++++++++++++++++++++++----------
3 files changed, 141 insertions(+), 32 deletions(-)
create mode 100644 pages/blank/blank.vue
diff --git a/pages.json b/pages.json
index bbaf73e..0efbef4 100644
--- a/pages.json
+++ b/pages.json
@@ -129,6 +129,14 @@
"titleNView": false,
"bounce": false
}
+ },
+ {
+ "path": "pages/blank/blank",
+ "style": {
+ "navigationBarTitleText": "",
+ "navigationStyle": "custom",
+ "titleNView": false
+ }
}
],
"globalStyle": {
diff --git a/pages/blank/blank.vue b/pages/blank/blank.vue
new file mode 100644
index 0000000..7cb390b
--- /dev/null
+++ b/pages/blank/blank.vue
@@ -0,0 +1,23 @@
+
+
+ 这是一个空白页
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/deepMate/deepMate.vue b/pages/deepMate/deepMate.vue
index c0858c0..475c5c4 100644
--- a/pages/deepMate/deepMate.vue
+++ b/pages/deepMate/deepMate.vue
@@ -20,6 +20,9 @@
+
+
+
@@ -30,25 +33,28 @@
-
+
个股诊断
市场情绪温度计
买卖时机提示
个股
-
+
+
当前特斯拉该如何布局?
TSLA
-
+
+
+
+
-
- 您可能感兴趣 -
@@ -102,25 +108,27 @@
-
-
- 以上数据由AI生成,不作为最终投资建议,决策需独立!
+
+
@@ -137,22 +145,22 @@ const hotTopics = ref([
{
id: 1,
text: '英伟达(NVDA)股票情绪温度?',
- icon: '../../static/icons/hot-tag.png'
+ icon: 'https://d31zlh4on95l9h.cloudfront.net/images/7ed58be0f4b81aeb398d9ba2534a624b.svg'
},
{
id: 2,
text: '博通(AVGO)明天还能涨吗?',
- icon: '../../static/icons/hot-tag.png'
+ icon: 'https://d31zlh4on95l9h.cloudfront.net/images/7ed58be0f4b81aeb398d9ba2534a624b.svg'
},
{
id: 3,
text: '为什么Fluence Energy(FLNC)会暴涨?',
- icon: '../../static/icons/hot-tag.png'
+ icon: 'https://d31zlh4on95l9h.cloudfront.net/images/7ed58be0f4b81aeb398d9ba2534a624b.svg'
},
{
id: 4,
text: '为什么Fluence Energy(FLNC)会暴涨?',
- icon: '../../static/icons/hot-tag.png'
+ icon: 'https://d31zlh4on95l9h.cloudfront.net/images/7ed58be0f4b81aeb398d9ba2534a624b.svg'
}
]);
@@ -193,6 +201,13 @@ const newChat = () => {
initUUID();
};
+// 跳转到空白页
+const goBlank = () => {
+ uni.navigateTo({
+ url: '/pages/blank/blank'
+ });
+};
+
// 发送消息
const sendMessage = () => {
if (inputMessage.value.trim() === "" || isSending.value) return;
@@ -298,6 +313,9 @@ const scrollToBottom = () => {
}
});
};
+const scrollToTop = () => {
+ uni.pageScrollTo({ scrollTop: 0, duration: 200 });
+};
\ No newline at end of file