|
@@ -116,13 +116,11 @@ export default class PhoneBind extends BasePage {
|
|
|
}
|
|
|
}
|
|
|
componentWillUnmount() {
|
|
|
- clearTimeout(this.countdow);
|
|
|
BackHandler.removeEventListener('hardwareBackPress', this.onBackAndroid);
|
|
|
}
|
|
|
|
|
|
onBackAndroid = () => {
|
|
|
- this.props.navigation.state.params.bind_phone_back(this.state.phone_num, this.state.phone_bind_result);
|
|
|
- this.props.navigation.goBack();
|
|
|
+ this.backresult();
|
|
|
return true;
|
|
|
};
|
|
|
getVerification() {
|
|
@@ -158,7 +156,7 @@ export default class PhoneBind extends BasePage {
|
|
|
verification_text: '获取验证码'
|
|
|
});
|
|
|
} else {
|
|
|
- this.countdown = setTimeout(() => {
|
|
|
+ this.count_timeout = setTimeout(() => {
|
|
|
this.setState({
|
|
|
verification_text: parseInt(this.state.verification_text) - 1 + ''
|
|
|
});
|
|
@@ -205,6 +203,7 @@ export default class PhoneBind extends BasePage {
|
|
|
}
|
|
|
|
|
|
backresult() {
|
|
|
+ clearTimeout(this.count_timeout);
|
|
|
this.props.navigation.state.params.bind_phone_back(this.state.phone_num, this.state.phone_bind_result);
|
|
|
this.props.navigation.goBack();
|
|
|
}
|