Authored by hongweigao

brandlist 根据频道不同加载

... ... @@ -142,7 +142,7 @@ const getBrandViewList = (channel, start, length) => {
let switchParams = switchBrandParams(channel);
let res = yield brandApi.getBrandListData(switchParams.brandCode);
let res = yield brandApi.getBrandListData(switchParams.channelType);
let result = [],
navigation = [];
... ...
... ... @@ -24,7 +24,7 @@ exports.getBrandViewList = (channel) => {
let apiMethod = [
headerModel.requestHeaderData(channel),
brandsModel.getBrandViewTop(channel),
brandsModel.getBrandViewList(channel)
brandsModel.getBrandViewList(channel, 1, 5) //分屏加载
];
return api.all(apiMethod).then(result => {
... ...