...
|
...
|
@@ -71,7 +71,7 @@ export default class RedPersonPicThree extends Component{ |
|
|
<TouchableOpacity style={styles.imagetype4} onPress={() => {this.props.onPressProduct && this.props.onPressProduct(linkType1,linkReource1)}} >
|
|
|
<YH_Image url={backgroundImage1} style={styles.imagetype4}/>
|
|
|
{linkType1=='1'?<View style={styles.maskContainer4}>
|
|
|
<Text style={styles.titleText4}>{name1}</Text>
|
|
|
<Text style={styles.titleText4} numberOfLines={1}>{name1}</Text>
|
|
|
<View style={styles.saleView}>
|
|
|
<Text style={{marginTop: 2,marginLeft: 10,fontSize: 13,backgroundColor: 'transparent',color: saleAble1?'red':'white',}}>{price1}</Text>
|
|
|
{saleAble1?<Text style={styles.deleteSale}>{sale1}</Text>:null}
|
...
|
...
|
@@ -81,7 +81,7 @@ export default class RedPersonPicThree extends Component{ |
|
|
<TouchableOpacity style={styles.imagetype4} onPress={() => {this.props.onPressProduct && this.props.onPressProduct(linkType2,linkReource2)}} >
|
|
|
<YH_Image url={backgroundImage2} style={styles.imagetype4}/>
|
|
|
{linkType2=='1'?<View style={styles.maskContainer4}>
|
|
|
<Text style={styles.titleText4}>{name2}</Text>
|
|
|
<Text style={styles.titleText4} numberOfLines={1}>{name2}</Text>
|
|
|
<View style={styles.saleView}>
|
|
|
<Text style={{marginTop: 2,marginLeft: 10,fontSize: 13,backgroundColor: 'transparent',color: saleAble2?'red':'white',}}>{price2}</Text>
|
|
|
{saleAble2?<Text style={styles.deleteSale}>{sale2}</Text>:null}
|
...
|
...
|
@@ -91,7 +91,7 @@ export default class RedPersonPicThree extends Component{ |
|
|
<TouchableOpacity style={styles.imagetype4} onPress={() => {this.props.onPressProduct && this.props.onPressProduct(linkType3,linkReource3)}} >
|
|
|
<YH_Image url={backgroundImage3} style={styles.imagetype4}/>
|
|
|
{linkType3=='1'?<View style={styles.maskContainer4}>
|
|
|
<Text style={styles.titleText4}>{name3}</Text>
|
|
|
<Text style={styles.titleText4} numberOfLines={1}>{name3}</Text>
|
|
|
<View style={styles.saleView}>
|
|
|
<Text style={{marginTop: 2,marginLeft: 10,fontSize: 13,backgroundColor: 'transparent',color: saleAble3?'red':'white',}}>{price3}</Text>
|
|
|
{saleAble3?<Text style={styles.deleteSale}>{sale3}</Text>:null}
|
...
|
...
|
@@ -299,7 +299,7 @@ let styles = StyleSheet.create({ |
|
|
textAlign :'left',
|
|
|
},
|
|
|
titleText4: {
|
|
|
width:width/3 ,
|
|
|
width:width/3 -10,
|
|
|
height:maskHeight / 2,
|
|
|
color: 'white',
|
|
|
marginLeft: 10,
|
...
|
...
|
|