Authored by zhangxiaoru

品牌

... ... @@ -200,10 +200,7 @@ const getBrandListByChannel = (channel) => {
obj.list.push({
brandName: newList[key].brand_name,
url: helpers.urlFormat('/product/index/brand', {
domain: newList[key].brand_domain,
shopType: newList[key].type
}),
url: _urlJump(parseInt(newList[key].type, 10), newList[key]),
img: helpers.image(newList[key].brand_ico, 186, 115),
});
resu.newBrandWall.push(obj);
... ... @@ -221,10 +218,7 @@ const getBrandListByChannel = (channel) => {
obj.list.push({
brandName: hotList[key].brand_name,
url: helpers.urlFormat('/product/index/brand', {
domain: hotList[key].brand_domain,
shopType: hotList[key].type
}),
url: _urlJump(parseInt(hotList[key].type, 10), hotList[key]),
img: helpers.image(hotList[key].brand_ico, 186, 115),
});
resu.recommandBrandWall.push(obj);
... ...
... ... @@ -981,6 +981,5 @@ module.exports = {
getShopDecorator: _getShopDecorator,
getShopCategoryApi: _getShopCategory,
formShopData: _formShopData,
getBrandShopSeo: _getBrandShopSeo,
processBrandShops: _processBrandShops
getBrandShopSeo: _getBrandShopSeo
};
... ...
... ... @@ -13,8 +13,6 @@ const api = global.yoho.API;
const cache = require('memory-cache');
const helpers = global.yoho.helpers;
// const listModel = require('./list');
/**
* 封面图
* @type {{boys: string, gilrs: string}}
... ...