Browse Source

首页的深度探索右侧查看更多点击后跳转深度探索页面;

zhaowenkang/feature-20251028181547-行情页面
宋杰 1 month ago
parent
commit
1d8de7df7c
  1. 20
      pages/home/home.vue

20
pages/home/home.vue

@ -46,7 +46,7 @@
<text class="section-title">深度探索</text> <text class="section-title">深度探索</text>
</view> </view>
<view class="header-right"> <view class="header-right">
<text class="more-btn">查看更多</text>
<text class="more-btn" @click="goToDeepExploration">查看更多</text>
</view> </view>
</view> </view>
</view> </view>
@ -204,12 +204,18 @@ export default {
}, },
methods: { 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) { debounce(fn, delay = 300) {
if (this.debounceTimer) clearTimeout(this.debounceTimer) if (this.debounceTimer) clearTimeout(this.debounceTimer)

Loading…
Cancel
Save