Sfoglia il codice sorgente

优化sub和proxy列表

zealerChina 1 anno fa
parent
commit
a669f8ca27

+ 6 - 2
application/admin/controller/auth/Proxy.php

@@ -95,9 +95,13 @@ class Proxy extends Backend
             list($where, $sort, $order, $offset, $limit) = $this->buildparams();
 
             $list = $this->model
+                ->alias('a')
                 ->where($where)
-                ->where('proxy',1)
-                ->where('id', 'in', $this->childrenAdminIds)
+                ->where('a.proxy',1)
+                ->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);

+ 14 - 2
application/admin/controller/auth/Sub.php

@@ -96,10 +96,22 @@ class Sub extends Backend
             }
             list($where, $sort, $order, $offset, $limit) = $this->buildparams();
 
+            // $list = $this->model
+            //     ->where($where)
+            //     ->where('sub',1)
+            //     ->where('id', 'in', $this->childrenAdminIds)
+            //     ->field(['password', 'salt', 'token'], true)
+            //     ->order($sort, $order)
+            //     ->paginate($limit);
+
             $list = $this->model
+                ->alias('a')
                 ->where($where)
-                ->where('sub',1)
-                ->where('id', 'in', $this->childrenAdminIds)
+                ->where('a.sub',1)
+                ->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);