Ver código fonte

Merge branch 'master' of http://gogs.efunbox.cn/Rorschach/efunbox-mobile-8

Limengbo 5 anos atrás
pai
commit
8ed6a91cd0
1 arquivos alterados com 3 adições e 4 exclusões
  1. 3 4
      pages/PhoneBind.js

+ 3 - 4
pages/PhoneBind.js

@@ -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();
 	}