...
|
...
|
@@ -73,26 +73,16 @@ export default class PBProductListView extends Component { |
|
|
<View style={styles.tagView}>
|
|
|
+ <Text style= {styles.tag}>{rowData.tag}</Text>
|
|
|
</View>}
|
|
|
|
|
|
{/* {tipState == '已抢光' ?
|
|
|
<View style={styles.soldOutContainer}>
|
|
|
<Image source={require('../../images/yqg.png')}/>
|
|
|
</View>
|
|
|
: null } */}
|
|
|
|
|
|
</View>
|
|
|
|
|
|
|
|
|
<View style={styles.rowRight}>
|
|
|
<Text style={styles.productTitle}
|
|
|
numberOfLines={2}>{rowData.productName}</Text>
|
|
|
|
|
|
{/* <View style = {{flexDirection : 'row', position: 'absolute', top: 80}}> */}
|
|
|
{tipState == '马上抢' && <View style = {styles.progressBar}>
|
|
|
|
|
|
<Progress.Bar
|
|
|
progress={percent/100}
|
|
|
width={100}
|
|
|
width={adjustPx(100)}
|
|
|
color={'#D0021B'}
|
|
|
unfilledColor={'#ffffff'}
|
|
|
borderWidth={1}
|
...
|
...
|
@@ -104,7 +94,7 @@ export default class PBProductListView extends Component { |
|
|
{tipState == '已抢光' && <View style = {styles.progressBar}>
|
|
|
<Progress.Bar
|
|
|
progress={1}
|
|
|
width={100}
|
|
|
width={adjustPx(100)}
|
|
|
color={'#B0B0B0'}
|
|
|
unfilledColor={'#B0B0B0'}
|
|
|
borderWidth={1}
|
...
|
...
|
@@ -113,11 +103,9 @@ export default class PBProductListView extends Component { |
|
|
<Text style = {styles.progressText}>已售罄</Text>
|
|
|
</View> }
|
|
|
|
|
|
<View>
|
|
|
<Text style={{fontSize: 12, color: '#B0B0B0', top: 8}}>限量{stock}件</Text>
|
|
|
</View>
|
|
|
|
|
|
|
|
|
{rowData.wait && <View style={styles.limit}>
|
|
|
<Text style={styles.limitText}>限量{stock}件</Text>
|
|
|
</View>}
|
|
|
<View style={{
|
|
|
flexDirection: 'row',
|
|
|
flex: 1,
|
...
|
...
|
@@ -271,17 +259,18 @@ let styles = StyleSheet.create({ |
|
|
},
|
|
|
seckillPrice: {
|
|
|
fontSize: 18,
|
|
|
lineHeight: 21,
|
|
|
lineHeight: 30,
|
|
|
fontWeight: 'bold',
|
|
|
color: '#d0021b',
|
|
|
justifyContent: 'center',
|
|
|
},
|
|
|
originPrice: {
|
|
|
textDecorationLine: 'line-through',
|
|
|
color: '#B0B0B0',
|
|
|
fontSize: 12,
|
|
|
lineHeight: 17,
|
|
|
height: 17,
|
|
|
left: 5,
|
|
|
top: 3
|
|
|
top: 10,
|
|
|
},
|
|
|
seckillBeginTimeTip: {
|
|
|
fontSize: 9,
|
...
|
...
|
@@ -317,6 +306,14 @@ let styles = StyleSheet.create({ |
|
|
tag: {
|
|
|
fontSize: 10,
|
|
|
color: 'white',
|
|
|
}
|
|
|
},
|
|
|
limit: {
|
|
|
position: 'absolute',
|
|
|
top: adjustPx(80),
|
|
|
},
|
|
|
limitText: {
|
|
|
fontSize: 12,
|
|
|
color: '#B0B0B0',
|
|
|
},
|
|
|
|
|
|
}); |
...
|
...
|
|