Authored by 姜枫

Merge branch 'feature/11.11' of http://git.yoho.cn/fe/yohobuywap-node into feature/11.11

... ... @@ -204,10 +204,14 @@ const _getChannelList = () => {
}
});
return Object.keys(list).length ? list : channelList;
return Object.keys(list).length ? list : {
channelList: channelList
};
} else {
logger.error('channel select code is not 200');
return channelList;
return {
channelList: channelList
};
}
});
};
... ...