|
|
@@ -600,9 +600,12 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
onShareAppMessage() {
|
|
|
- // let userinfo = uni.getStorageSync("userinfo");
|
|
|
+ let userinfo = uni.getStorageSync("userinfo");
|
|
|
if (this.type == 1) {
|
|
|
var path = `pagesC/shoppingMallType/p_details?goods_sign=${this.detail.goods_sign}&type=${this.type}`;
|
|
|
+ if (userinfo.invite) {
|
|
|
+ path = `pagesC/shoppingMallType/p_details?goods_sign=${this.detail.goods_sign}&type=${this.type}&invite=${userinfo.invite}`;
|
|
|
+ }
|
|
|
var title = this.detail.goods_name;
|
|
|
console.log(this.detail.goods_name);
|
|
|
|
|
|
@@ -613,6 +616,9 @@ export default {
|
|
|
};
|
|
|
} else if (this.type == 2) {
|
|
|
var path = `pagesC/shoppingMallType/p_details?item_id=${this.detail.input_num_iid}&type=${this.type}&goods_price=${this.goods_price}&yj_price=${this.yj_price}&annual_vol=${this.annual_vol}&coupon_discount=${this.coupon_discount}&promotion_start_time=${this.promotion_start_time}&promotion_end_time=${this.promotion_end_time}`;
|
|
|
+ if (userinfo.invite) {
|
|
|
+ path = `pagesC/shoppingMallType/p_details?item_id=${this.detail.input_num_iid}&type=${this.type}&goods_price=${this.goods_price}&yj_price=${this.yj_price}&annual_vol=${this.annual_vol}&coupon_discount=${this.coupon_discount}&promotion_start_time=${this.promotion_start_time}&promotion_end_time=${this.promotion_end_time}&invite=${userinfo.invite}`;
|
|
|
+ }
|
|
|
var title = this.detail.title;
|
|
|
|
|
|
return {
|
|
|
@@ -622,6 +628,9 @@ export default {
|
|
|
};
|
|
|
} else if (this.type == 3) {
|
|
|
var path = `pagesC/shoppingMallType/p_details?item_id=${this.detail.itemId}&type=${this.type}&goods_price=${this.goods_price}&yj_price=${this.yj_price}&annual_vol=${this.annual_vol}&coupon_discount=${this.coupon_discount}&promotion_start_time=${this.promotion_start_time}&promotion_end_time=${this.promotion_end_time}&goods_price_origin=${this.goods_price_origin}&shopName=${this.shopName}`;
|
|
|
+ if (userinfo.invite) {
|
|
|
+ path = `pagesC/shoppingMallType/p_details?item_id=${this.detail.itemId}&type=${this.type}&goods_price=${this.goods_price}&yj_price=${this.yj_price}&annual_vol=${this.annual_vol}&coupon_discount=${this.coupon_discount}&promotion_start_time=${this.promotion_start_time}&promotion_end_time=${this.promotion_end_time}&goods_price_origin=${this.goods_price_origin}&shopName=${this.shopName}&invite=${userinfo.invite}`;
|
|
|
+ }
|
|
|
var title = this.detail.skuName;
|
|
|
|
|
|
return {
|