|
|
|
@ -46,7 +46,7 @@ |
|
|
|
<text class="section-title">深度探索</text> |
|
|
|
</view> |
|
|
|
<view class="header-right"> |
|
|
|
<text class="more-btn">查看更多</text> |
|
|
|
<text class="more-btn" @click="goToDeepExploration">查看更多</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
@ -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) |
|
|
|
|