From 1d8de7df7c798bbb037d7a06fa6f431bb6917a6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=9D=B0?= Date: Fri, 24 Oct 2025 16:03:01 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E7=9A=84=E6=B7=B1=E5=BA=A6?= =?UTF-8?q?=E6=8E=A2=E7=B4=A2=E5=8F=B3=E4=BE=A7=E6=9F=A5=E7=9C=8B=E6=9B=B4?= =?UTF-8?q?=E5=A4=9A=E7=82=B9=E5=87=BB=E5=90=8E=E8=B7=B3=E8=BD=AC=E6=B7=B1?= =?UTF-8?q?=E5=BA=A6=E6=8E=A2=E7=B4=A2=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/home/home.vue | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/pages/home/home.vue b/pages/home/home.vue index e06b8fa..4124e11 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -46,7 +46,7 @@ 深度探索 - 查看更多 + 查看更多 @@ -204,12 +204,18 @@ export default { }, methods: { - goToMarketSituation() { - // 跳转到行情页面 - uni.navigateTo({ - url: '/pages/home/marketSituation' - }); - }, + goToDeepExploration() { + // 跳转到深度探索页面 + uni.navigateTo({ + url: '/pages/home/deepExploration' + }); + }, + goToMarketSituation() { + // 跳转到行情页面 + uni.navigateTo({ + url: '/pages/home/marketSituation' + }); + }, // 防抖函数 debounce(fn, delay = 300) { if (this.debounceTimer) clearTimeout(this.debounceTimer)