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: '
{{d.desc||"-"}}
'}, {field: 'create_at', title: '创建时间', align: 'center', sort: true}, {field: 'status', title: '权限状态', align: 'center', minWidth: 110, fixed: 'right', templet: '#StatusSwitchTpl'}, - {toolbar: '#toolbar', align: 'center', minWidth: 200, title: '权限操作', fixed: 'right'}, + {toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 200, fixed: 'right'}, ]] }); diff --git a/app/admin/view/menu/index.html b/app/admin/view/menu/index.html index 7fcc67df8..963853068 100644 --- a/app/admin/view/menu/index.html +++ b/app/admin/view/menu/index.html @@ -54,7 +54,7 @@ {$vo.spl|raw}{$vo.title} - {$vo.url} + {$vo.url} {eq name='vo.status' value='0'}已禁用{else}已激活{/eq} diff --git a/app/admin/view/oplog/index.html b/app/admin/view/oplog/index.html index 9820e5925..009e04052 100644 --- a/app/admin/view/oplog/index.html +++ b/app/admin/view/oplog/index.html @@ -32,7 +32,7 @@ {field: 'geoip', title: '访问地址', sort: true}, {field: 'geoisp', title: '网络服务商', sort: false}, {field: 'create_at', title: '操作时间', minWidth: 170, align: 'center', sort: true}, - {toolbar: '#toolbar', align: 'center', fixed: 'right'} + {toolbar: '#toolbar', title: '操作面板', align: 'center', fixed: 'right'} ]] }); }); diff --git a/app/admin/view/queue/index.html b/app/admin/view/queue/index.html index e5dd219e3..85e68f4c1 100644 --- a/app/admin/view/queue/index.html +++ b/app/admin/view/queue/index.html @@ -69,10 +69,10 @@ cols: [[ {checkbox: true, fixed: 'left'}, {field: 'code', title: '任务编号', width: 140, sort: true}, - {field: 'title', title: '任务名称', minWidth: 160}, - {field: 'command', title: '任务指令', minWidth: 160}, + {field: 'title', title: '任务名称', minWidth: 150}, + {field: 'command', title: '任务指令', minWidth: 150}, { - field: 'exec_time', title: '计划时间', minWidth: 250, templet: function (d) { + field: 'exec_time', title: '计划时间', minWidth: 245, templet: function (d) { d.exec_time = d.exec_time || 0, d.loops_time = d.loops_time || 0; if (d.loops_time > 0) { return d.exec_time + ' ( 每 ' + d.loops_time + ' 秒 ) '; @@ -87,13 +87,14 @@ if (d.enter_time.length > 12) { return d.enter_time.substr(12) + ' ( 耗时 ' + d.outer_time + ' )'; } else { - return '未执行' + return '任务未执行' } } }, - {field: 'attempts', title: '执行次数', minWidth: 80, align: 'center', sort: true, templet: "
{{d.attempts||0}}
"}, - {field: 'create_at', title: '创建时间', minWidth: 170, align: 'center'}, - {toolbar: '#toolbar', title: '操作面板', align: 'left', fixed: 'right', minWidth: 270} + {field: 'attempts', title: '执行次数', width: 95, align: 'center', sort: true, templet: "
{{d.attempts||0}}
"}, + {field: 'exec_desc', title: '执行结果', minWidth: 180}, + {field: 'create_at', title: '创建时间', minWidth: 170}, + {toolbar: '#toolbar', title: '操作面板', align: 'left', fixed: 'right', minWidth: 225} ]] }); }); diff --git a/app/admin/view/user/form.html b/app/admin/view/user/form.html index f11224d9f..39c9f4a43 100644 --- a/app/admin/view/user/form.html +++ b/app/admin/view/user/form.html @@ -33,7 +33,7 @@ - {if !empty($authorizes) || !empty($bases)} + {if !empty($bases) || !empty($authorizes)}
用户权限 {if !empty($bases)} @@ -53,11 +53,11 @@
访问权限 User Permission -
+
{if isset($vo.username) and $vo.username eq $superName} 超级用户不需要配置权限 {else}{foreach $authorizes as $authorize} -