|
@@ -3,7 +3,7 @@
|
|
|
<div class="main-box" :style="{backgroundColor:bgColor}">
|
|
|
|
|
|
<!-- 版头 -->
|
|
|
- <div class="html-head-img-box" v-if="reportInfo && !!reportInfo.NeedSplice && reportInfo.HeadImg">
|
|
|
+ <div class="html-head-img-box" v-if="reportInfo && !!reportInfo.NeedSplice && reportInfo.HeadImg&&$route.query.type!=='previewChapter'">
|
|
|
<img :src="reportInfo.HeadImg" alt="" style="display:block;width:100%">
|
|
|
<div class="head-layout-item" v-for="item in headImgStyle" :key="item.value"
|
|
|
:style="{fontFamily:item.family,fontSize:(item.size*2)+'px',fontWeight:item.weight,textAlign:item.align,color:item.color,
|
|
@@ -14,15 +14,15 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- 无版头版尾 -->
|
|
|
- <div class="no-layout-img-box" v-if="reportInfo && !!reportInfo.NeedSplice && (!reportInfo.HeadImg) && (!reportInfo.EndImg)">
|
|
|
+ <div class="no-layout-img-box" v-if="(reportInfo && !!reportInfo.NeedSplice && (!reportInfo.HeadImg) && (!reportInfo.EndImg))||$route.query.type==='previewChapter'">
|
|
|
<header>{{reportInfo.Title}}</header>
|
|
|
<div style=" box-sizing:border-box; color:#666; font-size:24px; overflow:hidden;">
|
|
|
<span>{{ reportInfo.Author}}</span>
|
|
|
- <span style="float:right;">{{reportInfo.CreateTime}}</span>
|
|
|
+ <span style="float:right;" v-if="[2,6].includes(reportInfo.State)">{{reportInfo.PublishTime}}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="abstract" v-if="reportInfo && !!reportInfo.NeedSplice">
|
|
|
+ <div class="abstract" v-if="reportInfo && !!reportInfo.NeedSplice&&reportInfo.Abstract">
|
|
|
<div>摘要: <span v-html="reportInfo.Abstract"></span></div>
|
|
|
</div>
|
|
|
|
|
@@ -45,7 +45,7 @@
|
|
|
</template>
|
|
|
|
|
|
<!-- 板尾 -->
|
|
|
- <div class="html-end-img-box" v-if="reportInfo && !!reportInfo.NeedSplice && reportInfo.EndImg">
|
|
|
+ <div class="html-end-img-box" v-if="reportInfo && !!reportInfo.NeedSplice && reportInfo.EndImg&&$route.query.type!=='previewChapter'">
|
|
|
<img :src="reportInfo.EndImg" alt="" style="display:block;width:100%">
|
|
|
<div class="head-layout-item" v-for="item in endImgStyle" :key="item.value"
|
|
|
:style="{fontFamily:item.family,fontSize:(item.size*2)+'px',fontWeight:item.weight,textAlign:item.align,color:item.color,
|
|
@@ -131,7 +131,7 @@ export default {
|
|
|
this.reportInfo = nval;
|
|
|
this.layoutBaseInfo['研报标题']=this.reportInfo.Title
|
|
|
this.layoutBaseInfo['研报作者']=this.reportInfo.Author
|
|
|
- this.layoutBaseInfo['创建时间']=this.reportInfo.CreateTime
|
|
|
+ this.layoutBaseInfo['创建时间']=[2,6].includes(this.reportInfo.State)?this.reportInfo.PublishTime:''
|
|
|
this.content=this.reportInfo.Content
|
|
|
}
|
|
|
},
|
|
@@ -160,7 +160,7 @@ export default {
|
|
|
this.reportInfo = this.info;
|
|
|
this.layoutBaseInfo['研报标题']=this.reportInfo.Title
|
|
|
this.layoutBaseInfo['研报作者']=this.reportInfo.Author
|
|
|
- this.layoutBaseInfo['创建时间']=this.reportInfo.CreateTime
|
|
|
+ this.layoutBaseInfo['创建时间']=[2,6].includes(this.reportInfo.State)?this.reportInfo.PublishTime:''
|
|
|
this.content=this.reportInfo.Content
|
|
|
return
|
|
|
}
|
|
@@ -188,10 +188,10 @@ export default {
|
|
|
})
|
|
|
this.layoutBaseInfo['研报标题']=this.reportInfo.Title
|
|
|
this.layoutBaseInfo['研报作者']=this.reportInfo.Author
|
|
|
- this.layoutBaseInfo['创建时间']=this.reportInfo.CreateTime
|
|
|
- if(this.$route.query.type==='preview'){
|
|
|
+ this.layoutBaseInfo['创建时间']=[2,6].includes(this.reportInfo.State)?this.reportInfo.PublishTime:''
|
|
|
+ if(['preview','previewChapter'].includes(this.$route.query.type)){
|
|
|
this.content=sessionStorage.getItem('smartReportContent')||res.Data.Content
|
|
|
- this.bgColor=sessionStorage.getItem('smartReportContentBg')||res.Data.CanvasColor
|
|
|
+ this.bgColor=this.$route.query.type==='preview'?(sessionStorage.getItem('smartReportContentBg')||res.Data.CanvasColor):''
|
|
|
}else{
|
|
|
this.content=res.Data.Content
|
|
|
this.bgColor=res.Data.CanvasColor
|