|
|
|
@ -54,7 +54,7 @@ |
|
|
|
<text class="analysis-dot blue"></text> |
|
|
|
<text class="analysis-text">市场风险评级: 需警惕潜在风险</text> |
|
|
|
</view> |
|
|
|
<view class="analysis-item"> |
|
|
|
<view class="analysis-item" @click="goToMorningMarketAnalysis"> |
|
|
|
<text class="analysis-dot green"></text> |
|
|
|
<text class="analysis-text">早盘解析: 今日高开, 芯片、稀土、公共</text> |
|
|
|
</view> |
|
|
|
@ -142,6 +142,12 @@ export default { |
|
|
|
this.showSelector = false; |
|
|
|
this.$refs.marketPopup.close(); |
|
|
|
}, |
|
|
|
goToMorningMarketAnalysis() { |
|
|
|
// 跳转到早盘解析页面 |
|
|
|
uni.navigateTo({ |
|
|
|
url: '/pages/morningMarketAnalysis/morningMarketAnalysis' |
|
|
|
}); |
|
|
|
}, |
|
|
|
getSelectedMarketName() { |
|
|
|
if (!this.selectedMarket) return ''; |
|
|
|
return this.marketData[this.selectedMarket].name; |
|
|
|
|