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)