...
|
...
|
@@ -29,7 +29,7 @@ export default class Alliance extends Component { |
|
|
<View style={styles.helpView}>
|
|
|
<Text style={styles.canWithDrawText}>可提现金额</Text>
|
|
|
<TouchableOpacity activeOpacity={1} onPress={() => {
|
|
|
this.props.showHelpDialog && this.props.showHelpDialog('仅计算到当天0点前的可提现的金额,每月15日可以提取当月之前的收益');
|
|
|
this.props.showHelpDialog && this.props.showHelpDialog('仅计算当天0点前产生的有效订单结算后的可提现金额,具体说明请参见规则说明');
|
|
|
}}>
|
|
|
<Image style={styles.helpImage} source={require('../images/help.png')}/>
|
|
|
</TouchableOpacity>
|
...
|
...
|
@@ -42,7 +42,7 @@ export default class Alliance extends Component { |
|
|
<View style={[styles.textView, {paddingRight: 30}]}>
|
|
|
<TouchableOpacity activeOpacity={1} onPress={() => {
|
|
|
NativeModules.YH_CommonHelper.logEvent('YB_SHARE_PROMOTION_WITHDRAW_C', {});
|
|
|
if (this.props.settlementInfo.settlementInfoData || this.props.settlementInfo.settlementInfoData.settlementAmount === 0) {
|
|
|
if (!this.props.settlementInfo.settlementInfoData.settlementAmount || this.props.settlementInfo.settlementInfoData.settlementAmount === 0) {
|
|
|
return
|
|
|
}
|
|
|
if (this.props.settlementInfo.settlementInfoData.canSettlement) {
|
...
|
...
|
|