...
|
...
|
@@ -120,12 +120,12 @@ export default class GuangDetailProductCell extends Component { |
|
|
render() {
|
|
|
let {data, sourceType, similarIndex, rowID} = this.props;
|
|
|
let name = data.get('product_name') ? data.get('product_name') : '';
|
|
|
let yh_exposureData = data.get('yh_exposureData', null).toJS();
|
|
|
let prd_id = data.get('product_id') ? data.get('product_id') : '';
|
|
|
let isGlobal = data.get('is_global') && data.get('is_global') == 'Y'; // 是否全球购商品
|
|
|
let is_limitbuy = data.get('is_limitbuy') && data.get('is_limitbuy') == 'Y'; // product.is_limitbuy=='Y'?true:false;
|
|
|
let product_skn = data.get('product_skn') ? data.get('product_skn') : '';
|
|
|
|
|
|
let yh_exposureData = data && data.get('yh_exposureData') ? data.get('yh_exposureData').toJS() : {};
|
|
|
let prd_id = data.get('product_id') ? data.get('product_id') : '';
|
|
|
let isGlobal = data.get('is_global') && data.get('is_global') == 'Y'; // 是否全球购商品
|
|
|
let is_limitbuy = data.get('is_limitbuy') && data.get('is_limitbuy') == 'Y'; // product.is_limitbuy=='Y'?true:false;
|
|
|
let product_skn = data.get('product_skn') ? data.get('product_skn') : '';
|
|
|
|
|
|
return (
|
|
|
<TouchableOpacity
|
|
|
style={styles.container}
|
...
|
...
|
|