mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修复权限禁用后仍然可以读取节点
This commit is contained in:
parent
9aa9691818
commit
7e4d270fd6
@ -14,6 +14,7 @@
|
||||
|
||||
namespace app\admin\model;
|
||||
|
||||
use think\Config;
|
||||
use think\Db;
|
||||
|
||||
/**
|
||||
@ -36,7 +37,7 @@ class Node {
|
||||
if (empty($authorizeids)) {
|
||||
return session('user.nodes', []);
|
||||
}
|
||||
$nodes = Db::name('SystemAuthNode')->where('auth', 'in', explode(',', $authorizeids))->column('node');
|
||||
$nodes = Db::name('SystemAuthNode')->where('auth', 'in', $authorizeids)->column('node');
|
||||
return session('user.nodes', $nodes);
|
||||
}
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user