Authored by QC-L

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

@@ -135,7 +135,7 @@ export default class Alliance extends Component { @@ -135,7 +135,7 @@ export default class Alliance extends Component {
135 ) 135 )
136 } 136 }
137 case 'orderList': { 137 case 'orderList': {
138 - let status = rowData.get('status') === '10' ? '待确认' : ''; 138 + let status = rowData.get('status') === '10' ? '待结算' : '';
139 return ( 139 return (
140 <View> 140 <View>
141 <TouchableOpacity activeOpacity={1} onPress={() => { 141 <TouchableOpacity activeOpacity={1} onPress={() => {
@@ -18,7 +18,7 @@ export default class OrderDetail extends Component { @@ -18,7 +18,7 @@ export default class OrderDetail extends Component {
18 } 18 }
19 19
20 _renderHeader() { 20 _renderHeader() {
21 - let status = this.props.orderDetail.status === '10' ? '(待确认)' : ''; 21 + let status = this.props.orderDetail.status === '10' ? '(待结算)' : '';
22 return ( 22 return (
23 <View> 23 <View>
24 <View style={styles.header}> 24 <View style={styles.header}>
@@ -79,7 +79,7 @@ export default class OrderIncome extends Component { @@ -79,7 +79,7 @@ export default class OrderIncome extends Component {
79 }}> 79 }}>
80 <View style={styles.headerContainer}> 80 <View style={styles.headerContainer}>
81 <View style={[styles.subHeaderContainer, this.state.orderStatus === 1 ? {backgroundColor: '#444444'} : null]}> 81 <View style={[styles.subHeaderContainer, this.state.orderStatus === 1 ? {backgroundColor: '#444444'} : null]}>
82 - <Text style={[styles.subHeaderText, this.state.orderStatus === 1 ? {color: 'white'} : null]}>确认</Text> 82 + <Text style={[styles.subHeaderText, this.state.orderStatus === 1 ? {color: 'white'} : null]}>结算</Text>
83 </View> 83 </View>
84 </View> 84 </View>
85 </TouchableOpacity> 85 </TouchableOpacity>
@@ -121,7 +121,7 @@ export default class OrderIncome extends Component { @@ -121,7 +121,7 @@ export default class OrderIncome extends Component {
121 } 121 }
122 122
123 _renderRow(rowData, sectionID, rowID) { 123 _renderRow(rowData, sectionID, rowID) {
124 - let status = rowData.get('status') === '10' ? '待确认' : ''; 124 + let status = rowData.get('status') === '10' ? '待结算' : '';
125 return ( 125 return (
126 <View> 126 <View>
127 <TouchableOpacity activeOpacity={1} onPress={() => { 127 <TouchableOpacity activeOpacity={1} onPress={() => {