diff --git a/app/admin/controller/Index.php b/app/admin/controller/Index.php index d900e97bf..aa5728894 100644 --- a/app/admin/controller/Index.php +++ b/app/admin/controller/Index.php @@ -48,6 +48,7 @@ class Index extends Controller $this->redirect(sysuri('admin/login/index')); } else { $this->title = '系统管理后台'; + $this->isSuper = AdminService::instance()->isSuper(); $this->fetch(); } } diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php index f6c71f184..7732ea3e4 100644 --- a/app/admin/controller/Queue.php +++ b/app/admin/controller/Queue.php @@ -46,7 +46,7 @@ class Queue extends Controller */ public function index() { - if (AdminService::instance()->isSuper()) { + if ($this->isSuper = AdminService::instance()->isSuper()) { $process = ProcessService::instance(); if ($process->iswin() || empty($_SERVER['USER'])) { $this->command = $process->think('xadmin:queue start'); diff --git a/app/admin/controller/User.php b/app/admin/controller/User.php index b3c14f09e..c4e8b69f1 100644 --- a/app/admin/controller/User.php +++ b/app/admin/controller/User.php @@ -32,6 +32,21 @@ class User extends Controller */ private $table = 'SystemUser'; + /** + * 超级用户名称 + * @var string + */ + protected $superName; + + /** + * 控制器初始化 + */ + protected function initialize() + { + // 超级用户名称 + $this->superName = $this->app->config->get('app.super_user', 'admin'); + } + /** * 系统用户管理 * @auth true @@ -43,6 +58,7 @@ class User extends Controller public function index() { $this->title = '系统用户管理'; + $query = $this->_query($this->table); $query->equal('status')->dateBetween('login_at,create_at'); $query->like('username,contact_phone#phone,contact_mail#mail'); diff --git a/app/admin/view/config/index.html b/app/admin/view/config/index.html index 3331d3fe6..2ee3df5c4 100644 --- a/app/admin/view/config/index.html +++ b/app/admin/view/config/index.html @@ -1,7 +1,7 @@ {extend name="main"} {block name="button"} - + 清理无效配置 diff --git a/app/admin/view/index/index-top.html b/app/admin/view/index/index-top.html index 79b598e04..75b7c22ab 100644 --- a/app/admin/view/index/index-top.html +++ b/app/admin/view/index/index-top.html @@ -26,7 +26,7 @@