...
|
...
|
@@ -76,16 +76,20 @@ |
|
|
url: '/product/shop/info.json',
|
|
|
data: {
|
|
|
domain: $shop.data('domain'),
|
|
|
id: $shop.data('shopid') // 店铺 ID
|
|
|
shopId: $shop.data('shopid') // 店铺 ID
|
|
|
}
|
|
|
}).done(result => {
|
|
|
if (result) {
|
|
|
this.shopInfo = result;
|
|
|
this.shopInfo.showBrandInfo = true;
|
|
|
let shareUrl = locationQuery.id ?
|
|
|
location.origin + '/product/shop/favorite/share?id=' + locationQuery.id :
|
|
|
location.origin + '/product/shop/' + $shop.data('domain') + '/share';
|
|
|
|
|
|
this.shareData = {
|
|
|
title: result.shopName,
|
|
|
des: shareSubTitle,
|
|
|
url: location.origin + '/product/shop/' + $shop.data('domain') + '/share',
|
|
|
url: shareUrl,
|
|
|
img: result.shopBg,
|
|
|
isBlkShop: result.isBlkShop,
|
|
|
domain: locationQuery.domain,
|
...
|
...
|
|