...
|
...
|
@@ -125,15 +125,15 @@ export default class BrandProductListCell extends Component { |
|
|
|
|
|
|
|
|
render() {
|
|
|
let {data, sourceType, rowID, style, onPressProduct} = this.props;
|
|
|
let {data, sourceType, rowID, style} = this.props;
|
|
|
let name = data.get('product_name') ? data.get('product_name') : '';
|
|
|
|
|
|
return (
|
|
|
<TouchableOpacity
|
|
|
style={[styles.container, style]}
|
|
|
activeOpacity={0.5}
|
|
|
activeOpacity={1}
|
|
|
onPress={() => {
|
|
|
onPressProduct && onPressProduct(data, rowID);
|
|
|
this.props.onPressProduct && this.props.onPressProduct(data, rowID);
|
|
|
}}
|
|
|
>
|
|
|
<View>
|
...
|
...
|
|