...
|
...
|
@@ -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));
|
|
|
|
|
|
}
|
|
|
|
...
|
...
|
@@ -151,11 +152,6 @@ class RegisterNew { |
|
|
return;
|
|
|
}
|
|
|
|
|
|
if (!this.view.protocolCheckbox.hasClass('icon-cb-radio')) {
|
|
|
showErrTip('您必须同意YOHO!BUY有货服务条款后,才能进行注册!');
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
let validateResult = validatePWD(password, result => {
|
|
|
if (!result.valid) {
|
|
|
showErrTip(result.msg);
|
...
|
...
|
|