|
@@ -72,7 +72,7 @@
|
|
|
<template v-if="(!info.report_info.head_img) && (!info.report_info.end_img)">
|
|
|
<div class="title">{{title}}</div>
|
|
|
<div class="flex time">
|
|
|
- <span>FICC团队</span>
|
|
|
+ <span>{{info.report_info.author}}</span>
|
|
|
<span>{{formatTime(info.report_info.publish_time)}}</span>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -196,15 +196,7 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- 免责声明 -->
|
|
|
- <van-popup :show="showDisclaimers" @close="showDisclaimers=false" round closeable>
|
|
|
- <div class="disclaimers-box">
|
|
|
- <div style="text-align:center;font-size:16px;font-weight:bold;margin-bottom:20px">免责声明</div>
|
|
|
- <div style="margin-bottom:10px">1、本报告仅供弘则弥道(上海)投资咨询有限公司正式签约的机构客户使用,不会因接收人/接收机构收到本报告而将其视为客户。</div>
|
|
|
- <div style="margin-bottom:10px">2、本报告根据国际和行业通行的准则,以合法渠道获得这些信息,尽可能保证可靠、准确和完整,但并不保证报告所述信息的准确性和完整性,也不保证本报告所包含的信息或建议在本报告发出后不会发生任何变更。本报告中所提供的信息仅供参考。</div>
|
|
|
- <div style="margin-bottom:10px">3、报告中的内容不对投资者做出的最终操作建议做任何的担保,也没有任何形式的分享投资收益或者分担投资损失的书面或口头承诺。不作为客户在投资、法律、会计或税务等方面的最终操作建议,也不作为道义的、责任的和法律的依据或者凭证,无论是否已经明示或者暗示。</div>
|
|
|
- <div style="margin-bottom:10px">4、在任何情况下,本公司不对客户/接收人/接收机构因使用报告中内容所引致的一切损失负责任,客户/接收人/接收机构需自行承担全部风险。</div>
|
|
|
- </div>
|
|
|
- </van-popup>
|
|
|
+ <Disclaimer v-model:show="showDisclaimers"/>
|
|
|
|
|
|
<!-- 申请提示弹窗 -->
|
|
|
<van-popup :show="pupData.show" @close="pupData.show=false" :close-on-click-overlay="false">
|
|
@@ -239,6 +231,7 @@ import LeaveMessage from '../components/leaveMessage/index.vue'
|
|
|
import collectIcon from '@/assets/hzyb/collect-icon.png'
|
|
|
import collectIcons from '@/assets/hzyb/collect-icon-s.png'
|
|
|
import reportCancel from './components/reportCancel.vue'
|
|
|
+import Disclaimer from '../components/Disclaimer.vue'
|
|
|
|
|
|
export default {
|
|
|
components:{
|
|
@@ -251,7 +244,8 @@ export default {
|
|
|
AudioBox,
|
|
|
SharePoster,
|
|
|
LeaveMessage,
|
|
|
- reportCancel
|
|
|
+ reportCancel,
|
|
|
+ Disclaimer
|
|
|
},
|
|
|
computed:{
|
|
|
code_scene(){
|
|
@@ -482,9 +476,17 @@ export default {
|
|
|
video_img:res.data.report_info.video_img
|
|
|
}
|
|
|
this.chapterList=res.data.report_chapter_list
|
|
|
- document.title = res.data.report_info.classify_name_first
|
|
|
-
|
|
|
- this.splitContentHandle(this.info.report_info.content);
|
|
|
+ document.title = res.data.report_info.classify_name_first||'';
|
|
|
+
|
|
|
+ //非章节报告处理内容分页
|
|
|
+ (!res.data.report_info.has_chapter) && this.splitContentHandle(this.info.report_info.content);
|
|
|
+
|
|
|
+ //章节拼接报告拼接iframe token
|
|
|
+ if(res.data.report_info.has_chapter&&res.data.report_detail_show_type===1) {
|
|
|
+ res.data.report_chapter_list.forEach(chapter => {
|
|
|
+ chapter.content = addTokenToIframe(chapter.content,this.reportId,chapter.report_chapter_id)
|
|
|
+ })
|
|
|
+ }
|
|
|
|
|
|
if(!res.data.auth_ok){
|
|
|
// 获取详情如果为联系销售根据判断条件是否主动申请一次
|