mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
[更新]修改后台图形验证码
This commit is contained in:
parent
fbd4df6d4a
commit
7853527079
@ -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()
|
||||
]]);
|
||||
});
|
@ -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);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user