songxingwei 3 年之前
父節點
當前提交
49a4eb4526
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      vendor/zoujingli/think-library/src/service/AdminService.php

+ 1 - 2
vendor/zoujingli/think-library/src/service/AdminService.php

@@ -95,10 +95,9 @@ class AdminService extends Service
      */
     public function apply($force = false)
     {
-        echo 2222;die();
         if ($force) $this->app->cache->rm('system_auth_node');
         if (($uid = $this->app->session->get('user.id'))) {
-            $user = Db::name('AdminUser')->where(['id' => $uid])->find();
+            $user = Db::name('SystemUser')->where(['id' => $uid])->find();
             if (($aids = $user['authorize'])) {
                 $where = [['status', 'eq', '1'], ['id', 'in', explode(',', $aids)]];
                 $subsql = Db::name('SystemAuth')->field('id')->where($where)->buildSql();