...
|
...
|
@@ -35,11 +35,12 @@ export default class GroupProductCell extends React.Component { |
|
|
return null;
|
|
|
}
|
|
|
let newSrc = getSlicedUrl(resource.get('defaultImages'), 200, 260, 2);
|
|
|
let deleteLineText = '¥' + resource.get('marketPrice').toFixed(2);
|
|
|
let deleteLineText = '¥' + resource.get('marketPrice');
|
|
|
let productSkn = resource.get('productSkn');
|
|
|
let activityId = resource.get('activityId');
|
|
|
let collagePrice = resource.get('collagePrice').toFixed(2);
|
|
|
let collagePrice = resource.get('collagePrice');
|
|
|
let joinLimit = resource.get('joinLimit');
|
|
|
let joinPeopleNum = resource.get('joinPeopleNum');
|
|
|
|
|
|
return (
|
|
|
<View>
|
...
|
...
|
@@ -60,7 +61,7 @@ export default class GroupProductCell extends React.Component { |
|
|
<Text style={[styles.price2, {textDecorationLine: 'line-through'}]}>{deleteLineText}</Text>
|
|
|
</View>
|
|
|
<View style={styles.buttonView}>
|
|
|
<Text style={{width: 67, fontSize: 12}}>{resource.get('joinPeopleNum')}人已参加</Text>
|
|
|
<Text style={{fontSize: 12}}>{joinPeopleNum}人已拼</Text>
|
|
|
<ImageBackground
|
|
|
style={styles.buttonBackImage}
|
|
|
source={require('../images/PT_bt.png')}
|
...
|
...
|
@@ -70,7 +71,7 @@ export default class GroupProductCell extends React.Component { |
|
|
<Text style={styles.button1}>{resource.get('peopleNum')}人成团</Text>
|
|
|
</View>
|
|
|
<View style={styles.buttonS}>
|
|
|
<Text style={styles.button2}>立即购买</Text>
|
|
|
<Text style={styles.button2}>立即开团</Text>
|
|
|
</View>
|
|
|
</ImageBackground>
|
|
|
</View>
|
...
|
...
|
|