...
|
...
|
@@ -81,7 +81,7 @@ export default class OrderIncome extends Component { |
|
|
}}>
|
|
|
<View style={styles.headerContainer}>
|
|
|
<View style={[styles.subHeaderContainer, this.state.orderStatus === 1 ? {backgroundColor: '#444444'} : null]}>
|
|
|
<Text style={[styles.subHeaderText, this.state.orderStatus === 1 ? {color: 'white'} : null]}>待提现</Text>
|
|
|
<Text style={[styles.subHeaderText, this.state.orderStatus === 1 ? {color: 'white'} : null]}>待确认</Text>
|
|
|
</View>
|
|
|
</View>
|
|
|
</TouchableOpacity>
|
...
|
...
|
@@ -91,7 +91,7 @@ export default class OrderIncome extends Component { |
|
|
}}>
|
|
|
<View style={styles.headerContainer}>
|
|
|
<View style={[styles.subHeaderContainer , this.state.orderStatus === 2 ? {backgroundColor: '#444444'} : null]}>
|
|
|
<Text style={[styles.subHeaderText, this.state.orderStatus === 2 ? {color: 'white'} : null]}>提现中</Text>
|
|
|
<Text style={[styles.subHeaderText, this.state.orderStatus === 2 ? {color: 'white'} : null]}>未提现</Text>
|
|
|
</View>
|
|
|
</View>
|
|
|
</TouchableOpacity>
|
...
|
...
|
@@ -101,7 +101,7 @@ export default class OrderIncome extends Component { |
|
|
}}>
|
|
|
<View style={styles.headerContainer}>
|
|
|
<View style={[styles.subHeaderContainer, this.state.orderStatus === 3 ? {backgroundColor: '#444444'} : null]}>
|
|
|
<Text style={[styles.subHeaderText, this.state.orderStatus === 3 ? {color: 'white'} : null]}>提现成功</Text>
|
|
|
<Text style={[styles.subHeaderText, this.state.orderStatus === 3 ? {color: 'white'} : null]}>已提现</Text>
|
|
|
</View>
|
|
|
</View>
|
|
|
</TouchableOpacity>
|
...
|
...
|
|