Authored by 王水玲

修改注册 协议

... ... @@ -31,8 +31,7 @@
<div data-userverify="{{captchaShow}}" data-geetest="{{useGeetest}}" id="js-img-check"{{#unless useGeetest}} class="full-img-verify"{{/unless}}></div>
<button id="regBtn" class="reg-btn" type="button">注册</button>
<div class="protocol">
<span class="iconfont checkbox icon-radio"></span>
我已阅读并同意遵守<a href="/service/qaDetail?keyword=服务条款&sonId=197" title="Yoho!Buy有货服务条款" target="_blank">Yoho!Buy有货服务条款</a>
注册即表示您已阅读并同意<a href="/service/qaDetail?keyword=服务条款&sonId=197" title="Yoho!Buy有货服务条款" target="_blank">Yoho!Buy有货服务条款</a>
</div>
</form>
</div>
... ...
... ... @@ -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);
... ...