...
|
...
|
@@ -31,7 +31,7 @@ export default class GroupDetailProduct extends React.Component { |
|
|
let productName = resource.productName;
|
|
|
let productSalePrice = resource.productSalePrice;
|
|
|
let productSkn = resource.productSkn;
|
|
|
|
|
|
|
|
|
return (
|
|
|
<View style={styles.container}>
|
|
|
|
...
|
...
|
@@ -41,10 +41,12 @@ export default class GroupDetailProduct extends React.Component { |
|
|
<YH_Image style={styles.image} url={productIcon}></YH_Image>
|
|
|
<View style={styles.right}>
|
|
|
<View style={styles.titleView}>
|
|
|
<Text style={styles.title} numberOfLines={2}>{productName}</Text>
|
|
|
<View style={styles.wrapRow}>
|
|
|
{joinLimit == 1 && <Image style={styles.priceImg} source={require('../images/ptj_tab.png')}/>}
|
|
|
<Text style={styles.title} numberOfLines={2}>{productName}</Text>
|
|
|
</View>
|
|
|
</View>
|
|
|
<View style={styles.priceView}>
|
|
|
{joinLimit == 1 && <Image style={styles.priceImg} source={require('../images/ptj_tab.png')}/>}
|
|
|
<Text style={styles.price1}>{productGroupPrice}</Text>
|
|
|
</View>
|
|
|
<View style={styles.subPriceView}>
|
...
|
...
|
@@ -96,11 +98,13 @@ let styles = StyleSheet.create({ |
|
|
marginTop: 17*DEVICE_WIDTH_RATIO,
|
|
|
marginLeft: 10*DEVICE_WIDTH_RATIO,
|
|
|
},
|
|
|
|
|
|
wrapRow: {
|
|
|
flexDirection: 'row',
|
|
|
alignItems: 'center'
|
|
|
},
|
|
|
title: {
|
|
|
fontSize: 12,
|
|
|
color: '#444444',
|
|
|
lineHeight: 19,
|
|
|
},
|
|
|
subPriceView: {
|
|
|
width: 174*DEVICE_WIDTH_RATIO,
|
...
|
...
|
|