|
@@ -554,6 +554,7 @@ export default {
|
|
|
this.$forceUpdate()
|
|
|
},
|
|
|
onLoad(options) {
|
|
|
+ console.log(this.userInfo);
|
|
|
uni.hideShareMenu();
|
|
|
console.log("是否登录:" + this.isLogin);
|
|
|
// 判断是否登录
|
|
@@ -583,6 +584,9 @@ export default {
|
|
|
this.promotionNo = options.inviteCode
|
|
|
}
|
|
|
console.log("界面跳转的邀请码:" + this.promotionNo);
|
|
|
+ if(this.promotionNo){
|
|
|
+ this.$Cache.set('INVITE_CODE', this.promotionNo);
|
|
|
+ }
|
|
|
this.sharePacket.isCanShare = false
|
|
|
this.sharePacket.isFristUrl = true
|
|
|
this.listenerActionSheet()
|
|
@@ -676,12 +680,13 @@ export default {
|
|
|
*/
|
|
|
// #ifdef MP
|
|
|
onShareAppMessage: function (res) {
|
|
|
+ let userInfo = this.$Cache.get("USER_INFO", true)
|
|
|
let that = this;
|
|
|
// 校验是否可以分享(先购买产品)
|
|
|
return {
|
|
|
- title: that.storeInfo.goodsName || "",
|
|
|
+ title: userInfo.realName + "邀请您购买共富1580商品",
|
|
|
imageUrl: "http://wine.gzzzyd.com/test/static/img/bg.a82f9752.jpg" || that.storeInfo.image,
|
|
|
- path: "/pages/goods_details/index?id=" + that.id + "&inviteCode=" + that.promotionShare,
|
|
|
+ path: "/pages/goods_details/index?id=" + that.id + "&inviteCode=" + that.promotionShare+"&zoneType=8",
|
|
|
};
|
|
|
},
|
|
|
|
|
@@ -1005,7 +1010,10 @@ export default {
|
|
|
tab: 3,
|
|
|
url: 1,
|
|
|
});
|
|
|
- });
|
|
|
+ });
|
|
|
+ this.sharePacket.isCanShare = false
|
|
|
+ this.sharePacket.isFristUrl = true
|
|
|
+ this.listenerActionSheet()
|
|
|
},
|
|
|
infoScroll: function () {
|
|
|
var that = this,
|