mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-21 22:55:36 +00:00
fix:修复管理员分组被禁用后还可以被远程select选择的问题
This commit is contained in:
parent
24112e2d78
commit
5b6523160f
@ -207,7 +207,7 @@ class Group extends Backend
|
||||
|
||||
public function select()
|
||||
{
|
||||
$data = $this->getGroups();
|
||||
$data = $this->getGroups([['status', '=', 1]]);
|
||||
|
||||
if ($this->assembleTree) {
|
||||
$data = $this->tree->assembleTree($this->tree->getTreeArray($data, 'name'));
|
||||
@ -217,12 +217,11 @@ class Group extends Backend
|
||||
]);
|
||||
}
|
||||
|
||||
public function getGroups()
|
||||
public function getGroups($where = [])
|
||||
{
|
||||
$pk = $this->model->getPk();
|
||||
$initKey = $this->request->get("initKey/s", $pk);
|
||||
|
||||
$where = [];
|
||||
if ($this->keyword) {
|
||||
$keyword = explode(' ', $this->keyword);
|
||||
foreach ($keyword as $item) {
|
||||
|
Loading…
Reference in New Issue
Block a user