...
|
...
|
@@ -42,16 +42,8 @@ export default class productCell extends Component { |
|
|
_priceView(data) {
|
|
|
|
|
|
let status = data.get('cutStatus');
|
|
|
let des = '';
|
|
|
if (status==2 || status==3) {
|
|
|
des = status == 2?'已成功':'';
|
|
|
return (
|
|
|
<View>
|
|
|
<View style={styles.priceFatherContainer}>
|
|
|
<Text style={styles.invalidDes}>{des}</Text>
|
|
|
</View>
|
|
|
</View>
|
|
|
)
|
|
|
return null;
|
|
|
}else {
|
|
|
return (
|
|
|
<View>
|
...
|
...
|
|