|
@@ -55,6 +55,7 @@ export default {
|
|
|
detail: {},
|
|
|
mid: '',
|
|
|
pageSource: '',
|
|
|
+ img_url: '',
|
|
|
};
|
|
|
},
|
|
|
head() {
|
|
@@ -129,6 +130,12 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
+ if (this.detail.postBizData.linkImagePath.indexOf('default') > 0) {
|
|
|
+ this.img_url = '/img/img-default.png';
|
|
|
+ } else {
|
|
|
+ this.img_url = this.detail.postBizData.linkImagePath;
|
|
|
+ }
|
|
|
+
|
|
|
this.pageSource = Report.pageSource.newUserLandingPage;
|
|
|
this.setCookieMid();
|
|
|
Report.reportLog({
|