diff --git a/application/admin/controller/Auth.php b/application/admin/controller/Auth.php index 7ad0df9e6..2488208c4 100644 --- a/application/admin/controller/Auth.php +++ b/application/admin/controller/Auth.php @@ -68,7 +68,7 @@ class Auth extends BasicAdmin { $nodes = NodeService::get(); $checked = Db::name('SystemAuthNode')->where(['auth' => $auth_id])->column('node'); - foreach ($nodes as $key => &$node) { + foreach ($nodes as &$node) { $node['checked'] = in_array($node['node'], $checked); } $all = $this->_apply_filter(ToolsService::arr2tree($nodes, 'node', 'pnode', '_sub_')); diff --git a/application/admin/controller/Config.php b/application/admin/controller/Config.php index 9ecf60938..3d5c47f6e 100644 --- a/application/admin/controller/Config.php +++ b/application/admin/controller/Config.php @@ -14,7 +14,6 @@ namespace app\admin\controller; -use app\store\OrderService; use controller\BasicAdmin; use service\ExtendService; use service\LogService; @@ -61,23 +60,13 @@ class Config extends BasicAdmin */ public function file() { - $this->title = '文件存储配置'; $alert = [ - 'type' => 'success', 'title' => '操作提示', - 'content' => '文件引擎参数影响全局文件上传功能,请勿随意修改!' + 'type' => 'danger', + 'title' => '操作安全警告(默认使用本地服务存储)', + 'content' => '请根据实际情况配置存储引擎,合理做好站点下载分流。建议尽量使用云存储服务,同时保证文件访问协议与网站访问协议一致!' ]; + $this->title = '文件存储配置'; $this->assign('alert', $alert); return $this->index(); } - - /** - * 短信参数配置 - */ - public function sms() - { - $this->title = '短信服务配置'; - $this->assign('result', ExtendService::querySmsBalance()); - return $this->index(); - } - } diff --git a/application/admin/controller/Index.php b/application/admin/controller/Index.php index f19b4e603..db4c11577 100644 --- a/application/admin/controller/Index.php +++ b/application/admin/controller/Index.php @@ -38,7 +38,7 @@ class Index extends BasicAdmin public function index() { NodeService::applyAuthNode(); - $list = (array)Db::name('SystemMenu')->where(['status' => '1'])->order('sort asc,id asc')->select(); + $list = (array) Db::name('SystemMenu')->where(['status' => '1'])->order('sort asc,id asc')->select(); $menus = $this->_filterMenuData(ToolsService::arr2tree($list), NodeService::get(), !!session('user')); return view('', ['title' => '系统管理', 'menus' => $menus]); } diff --git a/application/admin/controller/Log.php b/application/admin/controller/Log.php index e0a209834..3af893398 100644 --- a/application/admin/controller/Log.php +++ b/application/admin/controller/Log.php @@ -40,17 +40,14 @@ class Log extends BasicAdmin */ public function index() { - $this->title = '系统操作日志'; - $get = $this->request->get(); // 日志行为类别 $actions = Db::name($this->table)->group('action')->column('action'); $this->assign('actions', $actions); // 日志数据库对象 + list($this->title, $get) = ['系统操作日志', $this->request->get()]; $db = Db::name($this->table)->order('id desc'); foreach (['action', 'content', 'username'] as $key) { - if (isset($get[$key]) && $get[$key] !== '') { - $db->where($key, 'like', "%{$get[$key]}%"); - } + (isset($get[$key]) && $get[$key] !== '') && $db->whereLike($key, "%{$get[$key]}%"); } if (isset($get['date']) && $get['date'] !== '') { list($start, $end) = explode('-', str_replace(' ', '', $get['date'])); diff --git a/application/admin/controller/Menu.php b/application/admin/controller/Menu.php index 46f7078fe..e701783a4 100644 --- a/application/admin/controller/Menu.php +++ b/application/admin/controller/Menu.php @@ -95,13 +95,14 @@ class Menu extends BasicAdmin $current_path = "-{$vo['pid']}-{$vo['id']}"; if ($vo['pid'] !== '' && (stripos("{$menu['path']}-", "{$current_path}-") !== false || $menu['path'] === $current_path)) { unset($menus[$key]); + continue; } } } // 读取系统功能节点 $nodes = NodeService::get(); - foreach ($nodes as $key => $_vo) { - if (empty($_vo['is_menu'])) { + foreach ($nodes as $key => $node) { + if (empty($node['is_menu'])) { unset($nodes[$key]); } } diff --git a/application/admin/controller/Node.php b/application/admin/controller/Node.php index dff265baa..d70ea5593 100644 --- a/application/admin/controller/Node.php +++ b/application/admin/controller/Node.php @@ -40,8 +40,12 @@ class Node extends BasicAdmin */ public function index() { + $alert = [ + 'type' => 'danger', + 'title' => '操作安全警告(默认新节点所有人可以访问,请勾选登录控制)', + 'content' => '结构为系统自动生成,其权限各选项直接影响到不同权限用户的访问及操作,请勿随意修改数据!' + ]; $nodes = ToolsService::arr2table(NodeService::get(), 'node', 'pnode'); - $alert = ['type' => 'danger', 'title' => '安全警告', 'content' => '结构为系统自动生成, 状态数据请勿随意修改!']; return view('', ['title' => '系统节点管理', 'nodes' => $nodes, 'alert' => $alert]); } @@ -51,9 +55,8 @@ class Node extends BasicAdmin public function save() { if ($this->request->isPost()) { - $post = $this->request->post(); + list($data, $post) = [[], $this->request->post()]; if (isset($post['list'])) { - $data = []; foreach ($post['list'] as $vo) { $data['node'] = $vo['node']; $data[$vo['name']] = $vo['value']; diff --git a/application/admin/controller/User.php b/application/admin/controller/User.php index 48c621acd..5df50f48d 100644 --- a/application/admin/controller/User.php +++ b/application/admin/controller/User.php @@ -43,9 +43,7 @@ class User extends BasicAdmin $get = $this->request->get(); $db = Db::name($this->table)->where(['is_deleted' => '0']); foreach (['username', 'phone', 'mail'] as $key) { - if (isset($get[$key]) && $get[$key] !== '') { - $db->where($key, 'like', "%{$get[$key]}%"); - } + (isset($get[$key]) && $get[$key] !== '') && $db->whereLike($key, "%{$get[$key]}%"); } if (isset($get['date']) && $get['date'] !== '') { list($start, $end) = explode('-', str_replace(' ', '', $get['date'])); @@ -88,11 +86,12 @@ class User extends BasicAdmin $this->assign('verify', false); return $this->_form($this->table, 'pass'); } - $data = $this->request->post(); - if ($data['password'] !== $data['repassword']) { + $post = $this->request->post(); + if ($post['password'] !== $post['repassword']) { $this->error('两次输入的密码不一致!'); } - if (DataService::save($this->table, ['id' => $data['id'], 'password' => md5($data['password'])], 'id')) { + $data = ['id' => $post['id'], 'password' => md5($post['password'])]; + if (DataService::save($this->table, $data, 'id')) { $this->success('密码修改成功,下次请使用新密码登录!', ''); } $this->error('密码修改失败,请稍候再试!'); @@ -110,7 +109,7 @@ class User extends BasicAdmin } if (isset($data['id'])) { unset($data['username']); - } elseif (Db::name($this->table)->where(['username' => $data['username']])->find()) { + } elseif (Db::name($this->table)->where(['username' => $data['username']])->count() > 0) { $this->error('用户账号已经存在,请使用其它账号!'); } } else { diff --git a/application/admin/view/config.file.html b/application/admin/view/config.file.html index cc7a3c198..9cba66d01 100644 --- a/application/admin/view/config.file.html +++ b/application/admin/view/config.file.html @@ -1,11 +1,10 @@ {extend name="extra@admin/content"} {block name="content"} -
+
- +
- +
- +

设置系统允许上传文件的后缀,多个以英文逗号隔开。如:png,jpg,rar,doc

@@ -123,9 +121,8 @@
- +

填写七牛云存储空间名称,如:static

@@ -133,9 +130,8 @@
- +

填写七牛云存储访问域名,如:static.ctolog.cc

@@ -143,9 +139,8 @@
- +

可以在 [ 七牛云 > 个人中心 ] 设置并获取到访问密钥

@@ -154,9 +149,8 @@
- +

可以在 [ 七牛云 > 个人中心 ] 设置并获取到安全密钥

@@ -186,9 +180,8 @@
- +

填写OSS存储空间名称,如:static

@@ -196,9 +189,8 @@
- +

填写OSS存储外部访问域名,如:static.ctolog.cc

@@ -206,9 +198,8 @@
- +

可以在 [ 阿里云 > 个人中心 ] 设置并获取到访问密钥

@@ -217,9 +208,8 @@
- +

可以在 [ 阿里云 > 个人中心 ] 设置并获取到安全密钥

@@ -239,7 +229,6 @@ diff --git a/application/admin/view/user.index.html b/application/admin/view/user.index.html index bae437e07..f9a70eea0 100644 --- a/application/admin/view/user.index.html +++ b/application/admin/view/user.index.html @@ -2,11 +2,11 @@ {block name="button"}
- -
{/block} @@ -57,77 +57,77 @@ - - - - - - - - - - + + + + + + + + + + - {foreach $list as $key=>$vo} - - - - - - - - - - - {/foreach} + {foreach $list as $key=>$vo} + + + + + + + + + + + {/foreach}
- - 用户账号手机号电子邮箱登录次数最后登录状态操作
+ + 用户名手机号电子邮箱登录次数最后登录状态操作
- - - {$vo.username} - - {$vo.phone|default="还没有设置手机号"} - - {$vo.mail|default="还没有设置邮箱"} - - {$vo.login_num|default="从未登录"} - - {$vo.login_at|format_datetime|default="从未登录"} - - {if $vo.status eq 0} - 已禁用 - {elseif $vo.status eq 1} - 使用中 - {/if} - - {if auth("$classuri/edit")} - | - 编辑 - {/if} - {if auth("$classuri/auth")} - | - 授权 - {/if} - {if auth("$classuri/pass")} - | - 密码 - {/if} - {if $vo.status eq 1 and auth("$classuri/forbid")} - | - 禁用 - {elseif auth("$classuri/resume")} - | - 启用 - {/if} - {if auth("$classuri/del")} - | - 删除 - {/if} -
+ + + {$vo.username} + + {$vo.phone|default="还没有设置手机号"} + + {$vo.mail|default="还没有设置邮箱"} + + {$vo.login_num|default="从未登录"} + + {$vo.login_at|format_datetime|default="从未登录"} + + {if $vo.status eq 0} + 已禁用 + {elseif $vo.status eq 1} + 使用中 + {/if} + + {if auth("$classuri/edit")} + | + 编辑 + {/if} + {if auth("$classuri/auth")} + | + 授权 + {/if} + {if auth("$classuri/pass")} + | + 密码 + {/if} + {if $vo.status eq 1 and auth("$classuri/forbid")} + | + 禁用 + {elseif auth("$classuri/resume")} + | + 启用 + {/if} + {if auth("$classuri/del")} + | + 删除 + {/if} +
{if isset($page)}

{$page}

{/if}