Authored by 姜枫

fix bug

... ... @@ -36,6 +36,19 @@ function _paramHanlde(obj) {
obj.standard_value_id = standards[1];
}
if (obj.channel) {
switch (obj.channel) {
case 'men':
obj.gender = '1,3';
break;
case 'women':
obj.gender = '2,3';
break;
default:
break;
}
}
return obj;
}
... ...
... ... @@ -135,7 +135,7 @@ const ShopService = {
info.shopId = shopId;
info.name = shopIntro.shopName;
info.info = shopIntro.shopIntro;
info.btnName = '店铺介绍';
info.btnName = '品牌介绍';
info.isFavorite = shopIntro.isFavorite === 'Y';
let shopData = yield Promise.all([ShopService.getShopDecorator(shopId),
... ...