...
|
...
|
@@ -98,17 +98,16 @@ export default class Home extends Component { |
|
|
}
|
|
|
|
|
|
case 'categoryList': {
|
|
|
let row = item && item.item && item.item.toJS() || {}
|
|
|
let yh_exposureData = row.yh_exposureData || {}
|
|
|
let row = item && item.item && item.item.toJS() || {};
|
|
|
let yh_exposureData = row.yh_exposureData || {};
|
|
|
yh_exposureData.F_INDEX = item.index;
|
|
|
|
|
|
let productList = this.props.data.productList;
|
|
|
let product = productList && productList.toJS() || {}
|
|
|
let product = productList && productList.toJS() || {};
|
|
|
if(Object.keys(product).length){
|
|
|
yh_exposureData.TAB_ID = product.current_sort_id;
|
|
|
yh_exposureData.TAB_NAME = product.current_sort_name;
|
|
|
}
|
|
|
console.log(yh_exposureData)
|
|
|
return (
|
|
|
<ProductCell
|
|
|
style={[styles.listContainer, customStyle]}
|
...
|
...
|
|