Authored by 郭成尧

'店铺全部调通'

... ... @@ -31,7 +31,7 @@ const handleBrandList = origin => {
name: subValue.brand_name,
// link: helpers.urlFormat('/brand', {domain: subValue.brand_domain}),
link: '/brand?domain=' + subValue.brand_domain,
link: '/product/shop?domain=' + subValue.brand_domain,
logo: subValue.brand_ico
});
});
... ...
<template>
<div class="brand-share">
<div class="brand-top-box" v-bind:style="{ 'background-image': `url(${shopInfo.brandBg})` }"></div>
<div class="brand-top-box" v-lazy:background-image="shopInfo.brandBg | resize 750 478"></div>
<div class="brand-title">{{ shopInfo.brandName }}</div>
<div class="brand-intro">{{ shopInfo.brandIntro }}</div>
<div class="tip">进入 BLK 选购潮品</div>
<div class="icon arrow">&#xe602;</div>
<a href="//m.yohoblk.com"><img v-lazy="shopInfo.brandBg | resize 752 365"></a>
<a href="//m.yohoblk.com"><img v-lazy="shopInfo.brandBg | resize 750 478"></a>
</div>
<share-bottom></share-bottom>
</template>
... ...
... ... @@ -76,7 +76,7 @@
this.shareData = {
title: result.brandName,
des: shareSubTitle,
url: '/product/shop-share?domain=' + this.domain,
url: '/product/shop/share?domain=' + this.domain,
img: result.brandBg,
isBlkShop: result.isBlkShop,
shopId: result.shopId, // 不是分享的参数,收藏店铺使用
... ...
<template>
<div v-if="shopInfo.isBlkShop" class="brand-top-box" v-lazy:background-image="shopInfo.brandBg">
<div v-if="shopInfo.isBlkShop" class="brand-top-box" v-lazy:background-image="shopInfo.brandBg | resize 750 478">
<div class="brand-bottom">
<img v-if="shopInfo.brandLogo" v-lazy="shopInfo.brandLogo | resize 80 80" alt="{{ shopInfo.brandName }}">
<div v-else class="brand-title">{{ shopInfo.brandName }}</div>
... ...