|
|
@@ -85,7 +85,10 @@ export default {
|
|
|
this.query = options
|
|
|
this.id = options.id;
|
|
|
if(options.shareId) req.setStorage('shareId',options.shareId)
|
|
|
- await req.silenceLogin(options.userId, '');
|
|
|
+ // 朋友圈页面不调用登陆
|
|
|
+ if(!this.query.isSharePYQ){
|
|
|
+ await req.silenceLogin(options.userId, '');
|
|
|
+ }
|
|
|
setTimeout(()=>{
|
|
|
this.userInfo = req.getStorage('userInfo')
|
|
|
},500)
|
|
|
@@ -116,7 +119,8 @@ export default {
|
|
|
return {
|
|
|
title: this.detaile.title,
|
|
|
imageUrl: this.detaile.pic,
|
|
|
- path: '/topic/content/content?id=' + this.id +'&isShareTimeline=' + true+(this.userInfo.userType==1?('&userId='+this.userInfo.saleNo):'')
|
|
|
+ path: '/topic/content/content',
|
|
|
+ query:'id=' + this.id+'&isSharePYQ=' + true +'&isShare=' + true+(this.userInfo.userType==1?('&shareId='+this.userInfo.saleNo):'')
|
|
|
};
|
|
|
},
|
|
|
methods: {
|