Authored by LakeR

Merge remote-tracking branch 'origin/V9.30_Date' into V9.30_Date

@@ -137,6 +137,17 @@ class MessageContainer extends Component { @@ -137,6 +137,17 @@ class MessageContainer extends Component {
137 yh_channel: '1' 137 yh_channel: '1'
138 } 138 }
139 }).catch((error) => { 139 }).catch((error) => {
  140 + let param = {
  141 + url: params.url.split('?')[0],
  142 + title: params.content,
  143 + content: params.content,
  144 + pic: params.image,
  145 + minSortName: 0,
  146 + wechatShareImgUrl: params.image,
  147 + union_type
  148 + };
  149 + let shareParam = shareStrollDetail(param);
  150 + ReactNative.NativeModules.YH_CommonHelper.shareInfoWithGuangParam(shareParam);
140 throw(error); 151 throw(error);
141 }); 152 });
142 let data = json; 153 let data = json;
@@ -99,6 +99,7 @@ const shareGoodsDetail = (shareInfo) => { @@ -99,6 +99,7 @@ const shareGoodsDetail = (shareInfo) => {
99 product_name: productInfo.productName ? productInfo.productName : '', 99 product_name: productInfo.productName ? productInfo.productName : '',
100 sales_price: `¥${productInfo.originalSalesPrice}`, 100 sales_price: `¥${productInfo.originalSalesPrice}`,
101 productDefaultImage: productInfo.colorImage, 101 productDefaultImage: productInfo.colorImage,
  102 + product_skn: productSkn + '',
102 fromType: 'productDetail', 103 fromType: 'productDetail',
103 }; 104 };
104 return shareParam; 105 return shareParam;
@@ -127,6 +128,7 @@ const shareStrollDetail = (shareInfo) => { @@ -127,6 +128,7 @@ const shareStrollDetail = (shareInfo) => {
127 title: title ? title : '', 128 title: title ? title : '',
128 content: content ? content : '', 129 content: content ? content : '',
129 pic: pic, 130 pic: pic,
  131 + image: pic,
130 bigImage: wechatShareImgUrl, 132 bigImage: wechatShareImgUrl,
131 url: url, 133 url: url,
132 minSortName, 134 minSortName,