|
|
@ -124,7 +124,7 @@ |
|
|
<text class="section-title-text">机构动向简报</text> |
|
|
<text class="section-title-text">机构动向简报</text> |
|
|
</view> |
|
|
</view> |
|
|
<view class="text-gap"></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-stock">{{report.stock}}</view> |
|
|
<view class="report-status">{{report.status}}</view> |
|
|
<view class="report-status">{{report.status}}</view> |
|
|
</view> |
|
|
</view> |
|
|
@ -472,6 +472,13 @@ export default { |
|
|
}) |
|
|
}) |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
// 跳转到缺省页面(机构动向简报点击) |
|
|
|
|
|
goToNotFoundBriefing(report) { |
|
|
|
|
|
uni.navigateTo({ |
|
|
|
|
|
url: '/pages/notFoundBriefing/notFoundBriefing' |
|
|
|
|
|
}) |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
// 处理游客登录成功事件 |
|
|
// 处理游客登录成功事件 |
|
|
handleVisitorLoginSuccess(data) { |
|
|
handleVisitorLoginSuccess(data) { |
|
|
console.log('收到游客登录成功事件:', data) |
|
|
console.log('收到游客登录成功事件:', data) |
|
|
|