...
|
...
|
@@ -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);
|
...
|
...
|
|