Authored by ccbikai

完善数据校验

... ... @@ -37,7 +37,7 @@ let channel = {
cache: true,
code: 200
}).then(result => {
return result.data && result.data.product_list ? processProductList(result.data.product_list) : [];
return result && result.data ? processProductList(result.data.product_list) : [];
});
},
getChannelData() {
... ...