Authored by zhangxiaoru

brands

... ... @@ -35,21 +35,6 @@ const _processListData = (list) => {
return listData;
};
const _processTabData = (list) => {
list = list || [];
list = camelCase(list);
console.log(list);
// let artList = list.list.artList.map(data =>{
// data.publishTime = data.publishTime.replace(/年|月/g, '/');
// data.publishTime = data.publishTime.replace(/日/g, '');
// return data;
// });
};
const _getResources = () => {
return api.get('', {
method: 'web.brand.series'
... ... @@ -76,20 +61,6 @@ const _getBreakingSort = () => {
});
};
// const getListData = () => {
// return api.get('', {
// method: 'app.brand.newBrandList'
// }).then((result) => {
// if (result && result.code === 200) {
// return _processListData(result);
// } else {
// logger.error('品牌页数据返回 code 不是 200');
// return {};
// }
// });
// };
const getListData = () => {
return Promise.all([_getResources(), _getBreakingSort()])
.then((result) => {
... ...