|
@@ -156,7 +156,10 @@ import {
|
|
|
reportDetail,
|
|
|
} from "@/api/api.js";
|
|
|
import _ from 'lodash';
|
|
|
+import wxShare from '../utils/wxShare.js';
|
|
|
+
|
|
|
import AudioPlay from './audioPlay.vue';
|
|
|
+
|
|
|
export default {
|
|
|
components: { AudioPlay },
|
|
|
data() {
|
|
@@ -259,9 +262,14 @@ export default {
|
|
|
|
|
|
async getreportdetail() {
|
|
|
const { Data,Ret } = await reportDetail({ ReportCode: this.id });
|
|
|
+ document.title=(Data && Data.H5ShareName) || "研报"
|
|
|
if (Ret !== 200) return
|
|
|
- console.log('data',Data)
|
|
|
-
|
|
|
+ // console.log('data',Data)
|
|
|
+ let H5ShareName = Data.H5ShareName
|
|
|
+ let H5ReportShareImg = Data.H5ReportShareImg
|
|
|
+ let wxShareTitle=!!Data.Hz?
|
|
|
+ '【第'+Data.Report.Stage+'期|FICC'+'】'+Data.Report.Title+'('+Data.Report.CreateTime.substring(5,7)+Data.Report.CreateTime.substring(8,10)+')':
|
|
|
+ Data.Report.Title+'('+Data.Report.CreateTime.substring(5,7)+Data.Report.CreateTime.substring(8,10)+')'
|
|
|
this.reportInfo = Data.Report;
|
|
|
this.Disclaimer = Data.Disclaimer||'';
|
|
|
this.isshow = true;
|
|
@@ -280,6 +288,7 @@ export default {
|
|
|
wx.previewImage({ current: curImageSrc, urls: imgArray });
|
|
|
}
|
|
|
});
|
|
|
+ wxShare(document.location.href,H5ShareName || document.title,wxShareTitle,H5ReportShareImg,0);
|
|
|
},
|
|
|
|
|
|
/*内容分割*/
|