Authored by 孙凯

add 埋点 review by chenlin

... ... @@ -136,7 +136,7 @@ export default class SingleImage extends React.Component {
<TouchableOpacity style={styles.button} activeOpacity={0.5} onPress={() => {
let pos_id = 105;
let product_id = value.product_id?value.product_id:'';
this.props.onPressShopCar && this.props.onPressShopCar(value.product_skn,pos_id,product_id);
this.props.onPressShopCar && this.props.onPressShopCar(value.product_skn,product_id,pos_id);
}}>
<Image source={require('../../image/dian_gwc_bt.png')} style={styles.image} resizeMode={'contain'}></Image>
</TouchableOpacity>
... ...
... ... @@ -189,6 +189,7 @@ class DetailContainer extends Component {
let param = {
pruduct_skn: product_skn,
fromPage: 'YH_GuangDetailViewController',
pos_id: pos_id,
}
ReactNative.NativeModules.YH_CommonHelper.showChooseInfoView(param)
... ...