Authored by QC-L

修改有赚佣金页面文案 待确认->待结算 review by sunkai

... ... @@ -135,7 +135,7 @@ export default class Alliance extends Component {
)
}
case 'orderList': {
let status = rowData.get('status') === '10' ? '待确认' : '';
let status = rowData.get('status') === '10' ? '待结算' : '';
return (
<View>
<TouchableOpacity activeOpacity={1} onPress={() => {
... ...
... ... @@ -18,7 +18,7 @@ export default class OrderDetail extends Component {
}
_renderHeader() {
let status = this.props.orderDetail.status === '10' ? '(待确认)' : '';
let status = this.props.orderDetail.status === '10' ? '(待结算)' : '';
return (
<View>
<View style={styles.header}>
... ...
... ... @@ -79,7 +79,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>
... ... @@ -121,7 +121,7 @@ export default class OrderIncome extends Component {
}
_renderRow(rowData, sectionID, rowID) {
let status = rowData.get('status') === '10' ? '待确认' : '';
let status = rowData.get('status') === '10' ? '待结算' : '';
return (
<View>
<TouchableOpacity activeOpacity={1} onPress={() => {
... ...