mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修复删除权限,清理授权节点
This commit is contained in:
parent
6864b2d25e
commit
5fb4000cc1
@ -135,10 +135,11 @@ class Auth extends BasicAdmin {
|
||||
*/
|
||||
public function del() {
|
||||
if (DataService::update($this->table)) {
|
||||
$id = $this->request->post('id');
|
||||
Db::name('SystemAuthNode')->where('auth', $id)->delete();
|
||||
$this->success("权限删除成功!", '');
|
||||
} else {
|
||||
$this->error("权限删除失败,请稍候再试!");
|
||||
}
|
||||
$this->error("权限删除失败,请稍候再试!");
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -67,6 +67,7 @@ class Login extends BasicAdmin {
|
||||
public function out() {
|
||||
LogService::write('退出系统', '用户退出系统成功!');
|
||||
session('user', null);
|
||||
session_destroy();
|
||||
$this->success('退出登录成功!', '@admin/login');
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user