Authored by yyq

基础店铺名显示异常问题修复

... ... @@ -897,6 +897,7 @@ const getBaseShopData = (params, extra, channel, shopId) => {
shopIntro: `/about?shopId=${shopId}`,
coled: _.get(result[2], 'data.is_favorite', 'N') === 'Y'
});
_.set(resData, 'brand.shopBanner', decorator.shopTopBannerBase);
_.unset(resData, 'brand.brandBanner');
... ... @@ -909,6 +910,7 @@ const getBaseShopData = (params, extra, channel, shopId) => {
if (result[2].code === 200) {
let shopName = _.get(result[2], 'data.shop_name', '');
_.set(resData, 'brand.shopBanner.shopName', shopName);
_.set(resData, 'brand.pathNav[2]', {
name: shopName,
pathTitle: shopName
... ...
... ... @@ -57,6 +57,13 @@
width: 1150px;
margin: 0 auto;
.shop-name {
margin-left: 60px;
font-size: 32px;
float: left;
border: none;
}
.shop-favor {
margin-right: 60px;
}
... ...