Authored by 郭成尧

'接口参数顺序'

... ... @@ -37,13 +37,13 @@ exports.getSaleGoodsList = (params) => {
let tempChannel = _.isEmpty(params.channel) ? 'boys' : params.channel;
Object.assign(params, {
Object.assign({
method: 'app.search.sales',
limit: 60,
order: 's_t_desc',
productSize: '384x511',
yh_channel: yhChannel[tempChannel].channel
});
}, params);
return api.get('', sign.apiSign(params));
};
... ...