[更新]修改后台图形验证码

This commit is contained in:
Anyon 2019-09-25 15:16:29 +08:00
parent fbd4df6d4a
commit 7853527079
2 changed files with 6 additions and 5 deletions

View File

@ -162,5 +162,7 @@ Console::addDefaultCommands([
// ThinkAdmin 图形验证码
Route::get('/think/admin/captcha', function () {
$image = new CaptchaService();
return json(['uniqid' => $image->getUniqid(), 'image' => $image->getData()]);
return json(['code' => '1', 'info' => '生成验证码', 'data' => [
'uniqid' => $image->getUniqid(), 'image' => $image->getData()
]]);
});

View File

@ -755,7 +755,6 @@ $(function () {
if (data['skey']) delete data['skey'];
$.form.load(location.href, data, "post", function (ret) {
if (parseInt(ret.code) !== 1) {
$(that).find('[name=verify]').val('');
$(that).find('.verify.layui-hide').removeClass('layui-hide');
$(that).find('[data-refresh-captcha]').trigger('click');
}
@ -769,9 +768,9 @@ $(function () {
image = this, uniqid = this.getAttribute('data-uniqid-field') || 'uniqid';
verify = this.getAttribute('data-refresh-captcha') || this.getAttribute('data-verify-field') || 'verify';
$.form.load('?s=think/admin/captcha', {}, 'get', function (ret) {
image.src = ret.image;
$(image).parents('form').find('[name=' + verify + ']').val('');
$(image).parents('form').find('[name=' + uniqid + ']').val(ret.uniqid);
image.src = ret.data.image;
$(image).parents('form').find('[name=' + verify + ']').attr('value', '');
$(image).parents('form').find('[name=' + uniqid + ']').val(ret.data.uniqid);
return false;
}, false);
});