Update login.js

This commit is contained in:
Anyon 2019-12-27 11:25:04 +08:00
parent 20e53c6d88
commit cfb64e1eac

View File

@ -33,23 +33,25 @@ $(function () {
/*! 登录图形验证码刷新 */
$body.on('click', '[data-captcha]', function () {
var type, token, $that, verifyField, uniqidField, captchaUrl;
var type, token, $that, verify, uniqid, captchaUrl;
$that = $(this), captchaUrl = this.getAttribute('data-captcha') || '';
if (captchaUrl.length < 5) return $.msg.tips('请设置验证码请求地址');
uniqidField = this.getAttribute('data-field-uniqid') || 'uniqid';
verifyField = this.getAttribute('data-field-verify') || 'verify';
uniqid = this.getAttribute('data-field-uniqid') || 'uniqid';
verify = this.getAttribute('data-field-verify') || 'verify';
type = this.getAttribute('data-captcha-type') || 'captcha-type';
token = this.getAttribute('data-captcha-token') || 'captcha-token';
$.form.load(captchaUrl, {type: type, token: token}, 'post', function (ret) {
$that.html('');
$that.append($('<img alt="img" src="">').attr('src', ret.data.image));
$that.append($('<input type="hidden">').attr('name', uniqidField || 'uniqid').val(ret.data.uniqid));
if (ret.data.code) {
$that.parents('form').find('[name=' + (verifyField || 'verify') + ']').attr('value', ret.data.code);
} else {
$that.parents('form').find('[name=' + (verifyField || 'verify') + ']').attr('value', '');
if (ret.code) {
$that.html('');
$that.append($('<img alt="img" src="">').attr('src', ret.data.image));
$that.append($('<input type="hidden">').attr('name', uniqid).val(ret.data.uniqid));
if (ret.data.code) {
$that.parents('form').find('[name=' + verify + ']').attr('value', ret.data.code);
} else {
$that.parents('form').find('[name=' + verify + ']').attr('value', '');
}
return false;
}
return false;
}, false);
});