zealerChina před 1 rokem
rodič
revize
82d5c2b0ff
1 změnil soubory, kde provedl 16 přidání a 3 odebrání
  1. 16 3
      application/admin/controller/auth/Admin.php

+ 16 - 3
application/admin/controller/auth/Admin.php

@@ -94,11 +94,24 @@ class Admin extends Backend
             }
             list($where, $sort, $order, $offset, $limit) = $this->buildparams();
 
+            // $list = $this->model
+            //     ->where($where)
+            //     ->where('proxy',0)
+            //     ->where('sub',0)
+            //     ->where('id', 'in', $this->childrenAdminIds)
+            //     ->field(['password', 'salt', 'token'], true)
+            //     ->order($sort, $order)
+            //     ->paginate($limit);
+
             $list = $this->model
+                ->alias('a')
                 ->where($where)
-                ->where('proxy',0)
-                ->where('sub',0)
-                ->where('id', 'in', $this->childrenAdminIds)
+                ->where('a.proxy',0)
+                ->where('a.sub',0)
+                ->join('auth_group_access aga', 'a.id = aga.uid', 'LEFT')
+                ->group('a.id')
+                ->where('aga.group_id', 'in', $childrenGroupIds)
+                // ->where('id', 'in', $this->childrenAdminIds)
                 ->field(['password', 'salt', 'token'], true)
                 ->order($sort, $order)
                 ->paginate($limit);