|
@ -10,6 +10,7 @@
|
10
|
10
|
<div class="info-tag">
|
11
|
11
|
<span>{{contentInfo.modifyTime}}</span>
|
12
|
12
|
<span>作者/来源:{{contentInfo.source}}</span>
|
|
13
|
<shareOut :tUrl="elurl"></shareOut>
|
13
|
14
|
</div>
|
14
|
15
|
</div>
|
15
|
16
|
</div>
|
|
@ -66,11 +67,13 @@
|
66
|
67
|
import baseExpert from '@/components/subTemplate/BaseExpert';
|
67
|
68
|
import baseOrg from '@/components/subTemplate/BaseOrg';
|
68
|
69
|
import baseCompany from '@/components/subTemplate/BaseCompany';
|
|
70
|
import shareOut from '@/components/ShareOut';
|
69
|
71
|
export default {
|
70
|
72
|
data() {
|
71
|
73
|
return {
|
72
|
74
|
/* eslint-disable no-undef */
|
73
|
75
|
adinfo: PLAT.info.adinfo.mainAd,
|
|
76
|
elurl: '',
|
74
|
77
|
contentInfo: '',
|
75
|
78
|
platExperts: '',
|
76
|
79
|
platOrgs: '',
|
|
@ -79,15 +82,17 @@
|
79
|
82
|
},
|
80
|
83
|
created() {
|
81
|
84
|
this.contentId = urlParse('id');
|
82
|
|
if(navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)){
|
83
|
|
location.href="http://" + window.location.host + "/h5.html#/content?id="+this.contentId;
|
84
|
|
}
|
|
85
|
// if(navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)){
|
|
86
|
// location.href="http://" + window.location.host + "/h5.html#/content?id="+this.contentId;
|
|
87
|
// }
|
|
88
|
this.elurl = window.location.href;
|
85
|
89
|
this.getContentInfo();
|
86
|
90
|
this.getPlatExperts();
|
87
|
91
|
this.getPlatOrgs();
|
88
|
92
|
this.getPlatCompanys();
|
89
|
93
|
},
|
90
|
94
|
components: {
|
|
95
|
shareOut,
|
91
|
96
|
baseExpert,
|
92
|
97
|
baseOrg,
|
93
|
98
|
baseCompany
|
|
@ -184,7 +189,7 @@
|
184
|
189
|
</script>
|
185
|
190
|
|
186
|
191
|
<style scoped>
|
187
|
|
.info-tag span{
|
|
192
|
.info-tag *{
|
188
|
193
|
display: inline-block;
|
189
|
194
|
margin-right:15px;
|
190
|
195
|
color: #999;
|