Ver código fonte

去掉无用参数

hbchen 10 meses atrás
pai
commit
bbe35c359a

+ 1 - 1
src/views/report/reportDetailPdf.vue

@@ -146,7 +146,7 @@ export default {
       const { Data,Ret  } = await reportDetail({ ReportCode: this.id });
         if (Ret !== 200) return
         this.reportInfo = Data.Report;
-        this.$route.query.viewType=="!pdf!" && (this.reportInfo.Content=this.setReportContent(this.reportInfo.Content))
+        this.reportInfo.Content=this.setReportContent(this.reportInfo.Content)
         this.isshow = true;
         //水印
         localStorage.setItem('waterMarkStr',this.$route.query.flag||'')

+ 1 - 1
src/views/reportEn/detailPdf.vue

@@ -124,7 +124,7 @@ export default {
       const { Data,Ret  } = await reportEnDetail({ ReportCode: this.id,ShareEmail:Number(this.$route.query.ShareEmail)||0 });
         if (Ret !== 200) return
         this.reportInfo = Data.Report;
-        this.$route.query.viewType=="!pdf!" && (this.reportInfo.Content=this.setReportContent(this.reportInfo.Content))
+        this.reportInfo.Content=this.setReportContent(this.reportInfo.Content)
         this.isshow = true;    
         localStorage.setItem('waterMarkStr',this.$route.query.flag||'')
         const temwaterMarkStr=this.$route.query.flag||localStorage.getItem('waterMarkStr')

+ 1 - 1
src/views/smartReport/detailPdf.vue

@@ -85,7 +85,7 @@ export default {
       this.layoutBaseInfo['研报标题']=this.reportInfo.Title
       this.layoutBaseInfo['研报作者']=this.reportInfo.Author
       this.layoutBaseInfo['创建时间']=this.reportInfo.CreateTime
-      this.$route.query.viewType=="!pdf!" && (this.reportInfo.Content=this.setReportContent(this.reportInfo.Content))
+      this.reportInfo.Content=this.setReportContent(this.reportInfo.Content)
       this.isshow = true;
       this.$nextTick(()=>{
         this.pageResize()