...
|
...
|
@@ -44,7 +44,8 @@ class RegisterNew { |
|
|
this.view.passwordInput.bind('input', this.changeBtnStatus.bind(this));
|
|
|
this.view.passwordEyeIcon.on('click', this.passwordShowStatus.bind(this));
|
|
|
this.view.getVerifyCodeBtn.on('click', this.getVerifyCode.bind(this));
|
|
|
this.view.protocolCheckbox.on('click', this.changePrtclckbxStatus.bind(this));
|
|
|
|
|
|
// this.view.protocolCheckbox.on('click', this.changePrtclckbxStatus.bind(this));
|
|
|
|
|
|
}
|
|
|
|
...
|
...
|
@@ -134,8 +135,7 @@ class RegisterNew { |
|
|
if (this.view.mobileInput.val() &&
|
|
|
this.view.passwordInput.val() &&
|
|
|
this.view.verifyCodeInput.val() &&
|
|
|
this.view.getVerifyCodeBtn.data('oneClick') &&
|
|
|
this.view.protocolCheckbox.hasClass('icon-cb-radio')) {
|
|
|
this.view.getVerifyCodeBtn.data('oneClick')) {
|
|
|
this.view.regBtn.addClass('active');
|
|
|
} else {
|
|
|
this.view.regBtn.removeClass('active');
|
...
|
...
|
|