Authored by 王海元

替换文案 and 删除 YB_STROLL_CONT 埋点,原生已上报 --review by 孙凯

... ... @@ -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>
... ...
... ... @@ -75,8 +75,6 @@ class DetailContainer extends Component {
this.props.actions.getCommentsList();
this.props.actions.getPraiseForArtivle();
NativeModules.YH_CommonHelper.logEvent('YB_STROLL_CONT', {});
}
componentWillUnmount() {
... ...