Authored by 孙凯

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

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