diff --git a/app/admin/controller/Base.php b/app/admin/controller/Base.php index fd24d6642..934cb7790 100644 --- a/app/admin/controller/Base.php +++ b/app/admin/controller/Base.php @@ -44,8 +44,9 @@ class Base extends Controller public function index() { $this->_query(SystemBase::class)->layTable(function () { - $this->applyTypes(); $this->title = '数据字典管理'; + $this->types = (new SystemBase)->types(); + $this->type = input('get.type') ?: ($this->types[0] ?? '-'); }, function (QueryHelper $query) { $query->where(['deleted' => 0])->equal('type')->like('code,name,status')->dateBetween('create_at'); }); @@ -82,9 +83,14 @@ class Base extends Controller protected function _form_filter(array &$data) { if ($this->request->isGet()) { - $this->applyTypes(true); + $this->types = (new SystemBase)->types(); + $this->types[] = '--- 新增类型 ---'; + $this->type = input('get.type') ?: ($this->types[0] ?? '-'); } else { - $map = [['type', '=', $data['type']], ['code', '=', $data['code']], ['deleted', '=', 0]]; + $map = []; + $map[] = ['deleted', '=', 0]; + $map[] = ['code', '=', $data['code']]; + $map[] = ['type', '=', $data['type']]; if (isset($data['id'])) $map[] = ['id', '<>', $data['id']]; if ($this->app->db->name($this->table)->where($map)->count() > 0) { $this->error("同类型的数据编码已经存在!"); @@ -111,17 +117,4 @@ class Base extends Controller { $this->_delete($this->table); } - - /** - * 初始化数据类型 - * @param false $add - */ - private function applyTypes(bool $add = false) - { - $query = $this->app->db->name($this->table)->where(['deleted' => 0]); - $this->types = $query->distinct(true)->order('id asc')->column('type'); - if (empty($this->types)) $this->types = ['身份权限']; - $this->type = input('get.type') ?: ($this->types[0] ?? '-'); - if ($add) $this->types[] = '--- 新增类型 ---'; - } } \ No newline at end of file diff --git a/app/admin/controller/Config.php b/app/admin/controller/Config.php index 2036ad06c..c1c02a377 100644 --- a/app/admin/controller/Config.php +++ b/app/admin/controller/Config.php @@ -102,5 +102,4 @@ class Config extends Controller $this->success('修改文件存储成功!'); } } - } diff --git a/app/admin/controller/Login.php b/app/admin/controller/Login.php index e4bcea503..2d839e830 100644 --- a/app/admin/controller/Login.php +++ b/app/admin/controller/Login.php @@ -120,5 +120,4 @@ class Login extends Controller $this->app->session->destroy(); $this->success('退出登录成功!', sysuri('admin/login/index')); } - } diff --git a/app/admin/controller/Oplog.php b/app/admin/controller/Oplog.php index 8f4cf2dab..66739b5ab 100644 --- a/app/admin/controller/Oplog.php +++ b/app/admin/controller/Oplog.php @@ -100,5 +100,4 @@ class Oplog extends Controller { $this->_delete($this->table); } - } diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php index 4fb1a7f62..1adadb5f1 100644 --- a/app/admin/controller/Queue.php +++ b/app/admin/controller/Queue.php @@ -70,8 +70,8 @@ class Queue extends Controller if ($item['status'] === 4) $this->total['ers'] = $item['count']; }); }, function (QueryHelper $query) { - $query->timeBetween('enter_time,exec_time')->dateBetween('create_at'); $query->equal('status')->like('code,title,command'); + $query->timeBetween('enter_time,exec_time')->dateBetween('create_at'); }); } diff --git a/app/admin/controller/User.php b/app/admin/controller/User.php index 5e8079b94..db6147a34 100644 --- a/app/admin/controller/User.php +++ b/app/admin/controller/User.php @@ -264,5 +264,4 @@ class User extends Controller sysoplog('系统用户管理', "删除系统用户[{$id}]成功"); } } - } diff --git a/app/admin/controller/api/Runtime.php b/app/admin/controller/api/Runtime.php index 7024de383..ff39839fb 100644 --- a/app/admin/controller/api/Runtime.php +++ b/app/admin/controller/api/Runtime.php @@ -116,5 +116,4 @@ class Runtime extends Controller $this->error('只有超级管理员才能操作!'); } } - } \ No newline at end of file diff --git a/app/admin/controller/api/Update.php b/app/admin/controller/api/Update.php index 57f499c36..597bbe86e 100644 --- a/app/admin/controller/api/Update.php +++ b/app/admin/controller/api/Update.php @@ -74,5 +74,4 @@ class Update extends Controller { $this->success('获取模块信息成功!', ModuleService::instance()->getModules()); } - } \ No newline at end of file diff --git a/app/admin/controller/api/Upload.php b/app/admin/controller/api/Upload.php index 3ade3fab1..5101b498c 100644 --- a/app/admin/controller/api/Upload.php +++ b/app/admin/controller/api/Upload.php @@ -218,5 +218,4 @@ class Upload extends Controller foreach (['where(['deleted' => 0])->distinct(true)->column('type'); + if (empty($types) && empty($simple)) $types = ['身份权限']; + return $types; + } + /** * 格式化创建时间 * @param string $value diff --git a/app/admin/view/auth/index.html b/app/admin/view/auth/index.html index 4ed7686ed..7263d0fc3 100644 --- a/app/admin/view/auth/index.html +++ b/app/admin/view/auth/index.html @@ -31,7 +31,7 @@ {field: 'desc', title: '权限描述', sort: false, align: 'center', templet: '