diff --git a/application/admin/controller/Auth.php b/application/admin/controller/Auth.php index c1467f34e..ce21608a9 100644 --- a/application/admin/controller/Auth.php +++ b/application/admin/controller/Auth.php @@ -41,7 +41,8 @@ class Auth extends Controller public function index() { $this->title = '系统权限管理'; - $this->_query($this->table)->dateBetween('create_at')->like('title,desc')->equal('status')->order('sort asc,id desc')->page(); + $query = $this->_query($this->table)->dateBetween('create_at'); + $query->like('title,desc')->equal('status')->order('sort asc,id desc')->page(); } /** @@ -61,13 +62,15 @@ class Auth extends Controller $checked = Db::name('SystemAuthNode')->where(['auth' => $auth])->column('node'); foreach ($nodes as &$node) $node['checked'] = in_array($node['node'], $checked); $data = $this->_apply_filter(\library\tools\Data::arr2tree($nodes, 'node', 'pnode', '_sub_')); - return $this->success('获取权限配置成功!', $data); + return $this->success('获取权限节点成功!', $data); case 'save': // 保存权限配置 list($post, $data) = [$this->request->post(), []]; - foreach (isset($post['nodes']) ? $post['nodes'] : [] as $node) $data[] = ['auth' => $auth, 'node' => $node]; + foreach (isset($post['nodes']) ? $post['nodes'] : [] as $node) { + $data[] = ['auth' => $auth, 'node' => $node]; + } Db::name('SystemAuthNode')->where(['auth' => $auth])->delete(); Db::name('SystemAuthNode')->insertAll($data); - return $this->success('权限授权配置更新成功!'); + return $this->success('权限授权更新成功!'); default: return $this->_form($this->table, 'apply'); } diff --git a/application/admin/controller/Index.php b/application/admin/controller/Index.php index 974a76210..c99593170 100644 --- a/application/admin/controller/Index.php +++ b/application/admin/controller/Index.php @@ -159,7 +159,7 @@ class Index extends Controller { $this->applyCsrfToken(); if (intval($id) === intval(session('user.id'))) { - $this->_form('SystemUser', 'user/form', 'id', [], ['id' => $id]); + $this->_form('SystemUser', 'admin@user/form', 'id', [], ['id' => $id]); } else { $this->error('只能修改登录用户的资料!'); } diff --git a/application/admin/controller/Log.php b/application/admin/controller/Log.php index 37f09fcb7..424a29a89 100644 --- a/application/admin/controller/Log.php +++ b/application/admin/controller/Log.php @@ -15,6 +15,7 @@ namespace app\admin\controller; use library\Controller; +use think\Db; /** * 系统日志管理 @@ -40,7 +41,8 @@ class Log extends Controller public function index() { $this->title = '系统操作日志'; - $this->_query($this->table)->like('action,node,content,username,geoip')->dateBetween('create_at')->order('id desc')->page(); + $query = $this->_query($this->table)->like('action,node,content,username,geoip'); + $query->dateBetween('create_at')->order('id desc')->page(); } /** @@ -58,6 +60,20 @@ class Log extends Controller } } + /** + * 清理系统日志 + * @throws \think\Exception + * @throws \think\exception\PDOException + */ + public function clear() + { + if (Db::name($this->table)->whereRaw('1=1')->delete() !== false) { + $this->success('日志清理成功!'); + } else { + $this->error('日志清理失败,请稍候再试!'); + } + } + /** * 删除系统日志 */ diff --git a/application/admin/controller/Message.php b/application/admin/controller/Message.php index 0fbc92062..0ee72caaf 100644 --- a/application/admin/controller/Message.php +++ b/application/admin/controller/Message.php @@ -30,7 +30,7 @@ class Message extends Controller */ protected $table = 'SystemMessage'; - /*** + /** * 系统消息管理 * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException @@ -41,7 +41,8 @@ class Message extends Controller public function index() { $this->title = '系统消息管理'; - $this->_query($this->table)->like('title,desc')->equal('read_state')->dateBetween('create_at,read_at')->order('id desc')->page(); + $query = $this->_query($this->table)->like('title,desc')->equal('read_state'); + $query->dateBetween('create_at,read_at')->order('id desc')->page(); } /** diff --git a/application/admin/controller/Node.php b/application/admin/controller/Node.php index 0a41bba9c..529299247 100644 --- a/application/admin/controller/Node.php +++ b/application/admin/controller/Node.php @@ -60,8 +60,9 @@ class Node extends Controller $nodes = array_unique(array_column(\app\admin\service\Auth::get(), 'node')); if (false !== Db::name($this->table)->whereNotIn('node', $nodes)->delete()) { $this->success('清理无效的节点配置成功!', ''); + } else { + $this->error('清理无效的节点配置,请稍候再试!'); } - $this->error('清理无效的节点配置,请稍候再试!'); } /** @@ -79,8 +80,9 @@ class Node extends Controller } empty($data) || data_save($this->table, $data, 'node'); $this->success('节点配置保存成功!', ''); + } else { + $this->error('访问异常,请重新进入...'); } - $this->error('访问异常,请重新进入...'); } } \ No newline at end of file diff --git a/application/admin/controller/User.php b/application/admin/controller/User.php index 3b6ab99a6..1fe8ab150 100644 --- a/application/admin/controller/User.php +++ b/application/admin/controller/User.php @@ -45,8 +45,8 @@ class User extends Controller public function index() { $this->title = '系统用户管理'; - $query = $this->_query($this->table)->like('username,phone,mail')->dateBetween('login_at')->equal('status'); - $query->where(['is_deleted' => '0'])->order('id desc')->page(); + $query = $this->_query($this->table)->like('username,phone,mail')->dateBetween('login_at'); + $query->equal('status')->where(['is_deleted' => '0'])->order('id desc')->page(); } /** @@ -128,18 +128,6 @@ class User extends Controller } } - /** - * 删除系统用户 - */ - public function del() - { - if (in_array('10000', explode(',', $this->request->post('id')))) { - $this->error('系统超级账号禁止删除!'); - } - $this->applyCsrfToken(); - $this->_delete($this->table); - } - /** * 禁用系统用户 */ @@ -161,4 +149,16 @@ class User extends Controller $this->_save($this->table, ['status' => '1']); } + /** + * 删除系统用户 + */ + public function del() + { + if (in_array('10000', explode(',', $this->request->post('id')))) { + $this->error('系统超级账号禁止删除!'); + } + $this->applyCsrfToken(); + $this->_delete($this->table); + } + } diff --git a/application/admin/controller/api/Message.php b/application/admin/controller/api/Message.php index 7a9ded715..7e68548bc 100644 --- a/application/admin/controller/api/Message.php +++ b/application/admin/controller/api/Message.php @@ -24,6 +24,7 @@ class Message extends Controller { /** * Message constructor. + * @throws \think\Exception */ public function __construct() { diff --git a/application/admin/controller/api/Plugs.php b/application/admin/controller/api/Plugs.php index 60919a242..d6e9564ba 100644 --- a/application/admin/controller/api/Plugs.php +++ b/application/admin/controller/api/Plugs.php @@ -27,6 +27,7 @@ class Plugs extends Controller /** * Plugs constructor. + * @throws \think\Exception */ public function __construct() { diff --git a/application/admin/sys.php b/application/admin/sys.php index f76bdfdbf..9524dbb62 100644 --- a/application/admin/sys.php +++ b/application/admin/sys.php @@ -20,6 +20,9 @@ if (!function_exists('auth')) { */ function auth($node) { + list($req, $num) = [request(), count(explode('/', $node))]; + if ($num === 1) $node = "{$req->module()}/{$req->controller()}/{$node}"; + if ($num === 2) $node = "{$req->module()}/{$node}"; return \app\admin\service\Auth::checkAuthNode($node); } } @@ -39,7 +42,7 @@ if (!function_exists('sysdata')) { $data = json_decode(\think\Db::name('SystemData')->where('name', $name)->value('value'), true); return empty($data) ? [] : $data; } - return data_save('SystemData', ['name' => $name, 'value' => json_encode($value, 256)], 'name'); + return data_save('SystemData', ['name' => $name, 'value' => json_encode($value, JSON_UNESCAPED_UNICODE)], 'name'); } } diff --git a/application/admin/view/auth/apply.html b/application/admin/view/auth/apply.html index 2aed3b4af..a15f865db 100644 --- a/application/admin/view/auth/apply.html +++ b/application/admin/view/auth/apply.html @@ -1,11 +1,13 @@ {extend name='main'} {block name="content"} -
- - | -名称 | -描述 | -创建时间 | -状态 | -- | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
- | {$vo.title} | -{$vo.desc|default="没有写描述哦!"} | -{$vo.create_at|format_datetime} | -{eq name='vo.status' value='0'}已禁用{else}使用中{/eq} | -
+
- {if auth("admin/auth/edit")}
- |
- 编 辑
- {/if}
+
|
+