...
|
...
|
@@ -29,7 +29,10 @@ module.exports = { |
|
|
return api.get('', {
|
|
|
method: 'app.brand.newBrandList',
|
|
|
yh_channel: yhChannel[params.channel].channel
|
|
|
}, {code: 200, cache: true});
|
|
|
}, {
|
|
|
code: 200,
|
|
|
cache: true
|
|
|
});
|
|
|
},
|
|
|
|
|
|
/**
|
...
|
...
|
@@ -39,6 +42,9 @@ module.exports = { |
|
|
getCateListData(params) {
|
|
|
return api.get('', Object.assign(params, {
|
|
|
method: 'app.sort.get'
|
|
|
}, {code: 200, cache: true}));
|
|
|
}, {
|
|
|
code: 200,
|
|
|
cache: true
|
|
|
}));
|
|
|
}
|
|
|
}; |
|
|
\ No newline at end of file |
...
|
...
|
|