|
|
@@ -41,7 +41,7 @@
|
|
|
</navigator>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <serviceContact v-if="userInfo.userType!=1"></serviceContact>
|
|
|
+ <serviceContact :userId="query.userId?query.userId:''" v-if="userInfo.userType!=1"></serviceContact>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
@@ -98,14 +98,14 @@ export default {
|
|
|
return {
|
|
|
title: this.detaile.title,
|
|
|
imageUrl: this.detaile.pic,
|
|
|
- path: '/topic/content/content?id=' + this.id +'&isShare=' + true
|
|
|
+ path: '/topic/content/content?id=' + this.id +'&isShare=' + true+(this.userInfo.userType==1?('&userId='+this.userInfo.id):'')
|
|
|
};
|
|
|
},
|
|
|
onShareTimeline() {
|
|
|
return {
|
|
|
title: this.detaile.title,
|
|
|
imageUrl: this.detaile.pic,
|
|
|
- path: '/topic/content/content?id=' + this.id +'&isShareTimeline=' + true
|
|
|
+ path: '/topic/content/content?id=' + this.id +'&isShareTimeline=' + true+(this.userInfo.userType==1?('&userId='+this.userInfo.id):'')
|
|
|
};
|
|
|
},
|
|
|
methods: {
|