mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update Login.php
This commit is contained in:
parent
1a40f50322
commit
e98bfc8b34
@ -86,10 +86,9 @@ class Login extends Controller
|
|||||||
}
|
}
|
||||||
$this->app->session->set('user', $user->toArray());
|
$this->app->session->set('user', $user->toArray());
|
||||||
$this->app->session->delete("LoginInputSessionError");
|
$this->app->session->delete("LoginInputSessionError");
|
||||||
$user->save([
|
$user->inc('login_num')->save([
|
||||||
'login_ip' => $this->app->request->ip(),
|
'login_at' => date('Y-m-d H:i:s'),
|
||||||
'login_at' => $this->app->db->raw('now()'),
|
'login_ip' => $this->app->request->ip(),
|
||||||
'login_num' => $this->app->db->raw('login_num+1'),
|
|
||||||
]);
|
]);
|
||||||
sysoplog('系统用户登录', '登录系统后台成功');
|
sysoplog('系统用户登录', '登录系统后台成功');
|
||||||
$this->success('登录成功', sysuri('admin/index/index'));
|
$this->success('登录成功', sysuri('admin/index/index'));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user