...
|
...
|
@@ -119,16 +119,11 @@ export default class OutletPageListView extends Component { |
|
|
let honeResource = resource.get('honeResource');
|
|
|
let activityList = resource.get('activityList');
|
|
|
let categoryNavigationList = resource.get('categoryNavigationList')?resource.get('categoryNavigationList').toArray():null;
|
|
|
|
|
|
let productObj = categoryNavigationList?categoryNavigationList[0].get('list'):null;
|
|
|
let productList = productObj?productObj.get('product_list'):null;
|
|
|
let error = resource.get('error');
|
|
|
let ptr = resource.get('ptr')==true ? true : false;
|
|
|
|
|
|
let list;
|
|
|
if (honeResource) {
|
|
|
list = honeResource.get('list');
|
|
|
}
|
|
|
let list = list = honeResource?honeResource.get('list'):null;
|
|
|
|
|
|
let dataSource = {
|
|
|
outletHomeReource: list?list.toArray():[],
|
...
|
...
|
|