Browse Source

Merge branch 'songjie/feature-20251023161635-首页' into milestone-20251031-简版功能开发

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

8
pages/home/home.vue

@ -80,7 +80,7 @@
<view class="section-header-container"> <view class="section-header-container">
<view class="section-header"> <view class="section-header">
<text class="section-title">我的自选</text> <text class="section-title">我的自选</text>
<text class="more-btn">添加自选股</text>
<text class="more-btn" @click="goToMarketSituation">添加自选股</text>
</view> </view>
</view> </view>
@ -203,6 +203,12 @@ export default {
}, },
methods: { methods: {
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