Authored by 孙凯

YB_STROLL_CONT_REC_PRD,增加参数POS_ID=103 review by hongmo

... ... @@ -133,7 +133,8 @@ export default class GuangDetailProductCell extends Component {
activeOpacity={1}
yh_exposureData={yh_exposureData}
onPress={() => {
this.props.onPressProduct && this.props.onPressProduct(data, rowID);
let pos_id = 103;
this.props.onPressProduct && this.props.onPressProduct(data, rowID,pos_id);
}}
>
<View style={{overflow: 'hidden',backgroundColor: '#f0f0f0',height: Platform.OS === 'ios'?rowHeight:rowHeight+4,width: rowWidth+1,borderColor: '#e0e0e0',
... ... @@ -146,7 +147,8 @@ export default class GuangDetailProductCell extends Component {
{is_limitbuy ?
<TouchableOpacity style={styles.typeLookDetail} activeOpacity={0.5} onPress={() => {
this.props.onPressProduct && this.props.onPressProduct(data, rowID);
let pos_id = 103;
this.props.onPressProduct && this.props.onPressProduct(data, rowID,pos_id);
}}>
<Text style={styles.lookDetailText}>查看详情</Text>
<Image source={require('../../../studentCertification/images/right_arrow.png')} style={styles.arrow_icon} resizeMode={'contain'}></Image>
... ...