|
@@ -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();
|