Browse Source

为添加自选股添加点击事件,跳转到行情页。

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

8
pages/home/home.vue

@ -80,7 +80,7 @@
<view class="section-header-container">
<view class="section-header">
<text class="section-title">我的自选</text>
<text class="more-btn">添加自选股</text>
<text class="more-btn" @click="goToMarketSituation">添加自选股</text>
</view>
</view>
@ -203,6 +203,12 @@ export default {
},
methods: {
goToMarketSituation() {
//
uni.navigateTo({
url: '/pages/home/marketSituation'
});
},
//
debounce(fn, delay = 300) {
if (this.debounceTimer) clearTimeout(this.debounceTimer)

Loading…
Cancel
Save