From 388ce4bd83969a4d8ede0c8ddfdca2dcf3fbe80d Mon Sep 17 00:00:00 2001 From: ZhangYong Date: Tue, 28 Oct 2025 20:13:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=B7=AF=E5=BE=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/footerBar.vue | 4 ++-- pages.json | 2 +- pages/{home => deepExploration}/deepExploration.vue | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename pages/{home => deepExploration}/deepExploration.vue (100%) diff --git a/components/footerBar.vue b/components/footerBar.vue index ac96c57..522d2d8 100644 --- a/components/footerBar.vue +++ b/components/footerBar.vue @@ -111,7 +111,7 @@ const tabChange = (value) => { }) } else if (value == 2) { //行情 uni.redirectTo({ - url: '/pages/marketSituation/marketSituation', + url: '/pages/home/marketSituation', animationType: 'fade-in' }) } else if (value == 3) { //DeepMate @@ -122,7 +122,7 @@ const tabChange = (value) => { } else if (value == 4) { //深度探索 if (props.type == 'deepExploration') return; uni.redirectTo({ - url: '/pages/home/deepExploration', + url: '/pages/deepExploration/deepExploration', animationType: 'fade-in' }) } else if (value == 5) { //我的 diff --git a/pages.json b/pages.json index 5cad957..cfa20c4 100644 --- a/pages.json +++ b/pages.json @@ -142,7 +142,7 @@ } }, { - "path": "pages/home/deepExploration", + "path": "pages/deepExploration/deepExploration", "style": { "navigationStyle": "custom", "disableSwipeBack": true, diff --git a/pages/home/deepExploration.vue b/pages/deepExploration/deepExploration.vue similarity index 100% rename from pages/home/deepExploration.vue rename to pages/deepExploration/deepExploration.vue