Browse Source

加入机构动向简报的跳转逻辑;

dongqian/feature-20251022181325-deepmate简版
宋杰 3 weeks ago
parent
commit
9b40a9ef94
  1. 9
      pages/home/home.vue

9
pages/home/home.vue

@ -124,7 +124,7 @@
<text class="section-title-text">机构动向简报</text>
</view>
<view class="text-gap"></view>
<view class="report-item" v-for="(report, index) in institutionalReports" :key="index">
<view class="report-item" v-for="(report, index) in institutionalReports" :key="index" @click="goToNotFoundBriefing(report)">
<view class="report-stock">{{report.stock}}</view>
<view class="report-status">{{report.status}}</view>
</view>
@ -472,6 +472,13 @@ export default {
})
},
//
goToNotFoundBriefing(report) {
uni.navigateTo({
url: '/pages/notFoundBriefing/notFoundBriefing'
})
},
//
handleVisitorLoginSuccess(data) {
console.log('收到游客登录成功事件:', data)

Loading…
Cancel
Save