|
@@ -46,11 +46,10 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div v-if="tickerInfo.ticker_title.report_chapter_type_id ===26" style="text-align:center;font-weight:bold">注:与新加坡TSR20相关数据均取展示日期前一交易日数据</div>
|
|
|
- <div></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 章节详情底部快速切换 -->
|
|
|
- <div class="chapter-list-wrap" v-if="formPage!='home'">
|
|
|
+ <div class="chapter-list-wrap" v-if="fromPage!='home'">
|
|
|
<div class="top-text">更多</div>
|
|
|
<van-row gutter="10">
|
|
|
<van-col span="6" v-for="item in info.report_chapter_menu_list" :key="item.report_chapter_id">
|
|
@@ -115,7 +114,7 @@ export default {
|
|
|
showDisclaimers: false, //显示免责声明
|
|
|
html: "",
|
|
|
chapterId:0,
|
|
|
- formPage:'',//如果是从首页(home)来的则隐藏底部切换
|
|
|
+ fromPage:'',//如果是从首页(home)来的则隐藏底部切换
|
|
|
info:null,
|
|
|
|
|
|
tickerInfo:null,
|
|
@@ -128,9 +127,12 @@ export default {
|
|
|
|
|
|
};
|
|
|
},
|
|
|
+ beforeCreate(){
|
|
|
+ localStorage.setItem('hzyb-token',this.$route.query.token)
|
|
|
+ },
|
|
|
created(options) {
|
|
|
this.chapterId=this.$route.query.chapterId
|
|
|
- this.formPage=this.$route.query.formPage||''
|
|
|
+ this.fromPage=this.$route.query.fromPage||''
|
|
|
this.getDetail()
|
|
|
},
|
|
|
methods: {
|
|
@@ -234,7 +236,7 @@ export default {
|
|
|
this.pupData.content=`<p>您已提交过申请,请耐心等待</p>`
|
|
|
}else{
|
|
|
if(!this.info.permission_check.customer_info.status||this.info.permission_check.customer_info.status!='流失'){
|
|
|
- uni.redirectTo({
|
|
|
+ wx.miniProgram.redirectTo({
|
|
|
url:"/pages-applyPermission/applyPermission?source=4&from_page=报告详情"
|
|
|
})
|
|
|
}else{//主动调一次申请权限接口
|