diff --git a/application/admin/controller/Node.php b/application/admin/controller/Node.php index af2700aa5..ec4d4ad8a 100644 --- a/application/admin/controller/Node.php +++ b/application/admin/controller/Node.php @@ -62,9 +62,9 @@ class Node extends BasicAdmin { $tmp = explode('/', $thr); $one = $tmp[0]; $two = "{$tmp[0]}/{$tmp[1]}"; - $nodes[$one] = array_merge(isset($alias[$one]) ? $alias[$one] : ['node' => $one, 'title' => $thr, 'is_menu' => 0, 'is_auth' => 0], ['pnode' => '']); - $nodes[$two] = array_merge(isset($alias[$two]) ? $alias[$two] : ['node' => $two, 'title' => $thr, 'is_menu' => 0, 'is_auth' => 0], ['pnode' => $one]); - $nodes[$thr] = array_merge(isset($alias[$thr]) ? $alias[$thr] : ['node' => $thr, 'title' => $thr, 'is_menu' => 1, 'is_auth' => 0], ['pnode' => $two]); + $nodes[$one] = array_merge(isset($alias[$one]) ? $alias[$one] : ['node' => $one, 'title' => '', 'is_menu' => 0, 'is_auth' => 0], ['pnode' => '']); + $nodes[$two] = array_merge(isset($alias[$two]) ? $alias[$two] : ['node' => $two, 'title' => '', 'is_menu' => 0, 'is_auth' => 0], ['pnode' => $one]); + $nodes[$thr] = array_merge(isset($alias[$thr]) ? $alias[$thr] : ['node' => $thr, 'title' => '', 'is_menu' => 0, 'is_auth' => 0], ['pnode' => $two]); } $this->assign('nodes', Tools::arr2table($nodes, 'node', 'pnode')); } @@ -75,15 +75,13 @@ class Node extends BasicAdmin { public function save() { if ($this->request->isPost()) { $post = $this->request->post(); - foreach ($post as $key => $vo) { - if (stripos($key, 'title_') !== 0) { - continue; - } - $node = substr($key, strlen('title_')); - $data = ['node' => $node, 'title' => $vo, 'is_menu' => intval(!empty($post["menu_{$node}"])), 'is_auth' => intval(!empty($post["auth_{$node}"]))]; + if (isset($post['name']) && isset($post['value'])) { + $nameattr = explode('.', $post['name']); + $field = array_shift($nameattr); + $data = ['node' => join(',', $nameattr), $field => $post['value']]; Data::save($this->table, $data, 'node'); + $this->success('参数保存成功!', ''); } - $this->success('参数保存成功!', ''); } else { $this->error('访问异常,请重新进入...'); } diff --git a/application/admin/controller/User.php b/application/admin/controller/User.php index 117b89ccb..8956c98ef 100644 --- a/application/admin/controller/User.php +++ b/application/admin/controller/User.php @@ -15,6 +15,8 @@ namespace app\admin\controller; use controller\BasicAdmin; +use library\Data; +use think\Db; /** * 系统用户管理控制器 @@ -25,10 +27,104 @@ use controller\BasicAdmin; */ class User extends BasicAdmin { + /** + * 指定当前数据表 + * @var string + */ protected $table = 'SystemUser'; public function index() { - parent::_list($this->table); + $this->title = '用户管理'; + $db = Db::name($this->table)->where('is_deleted', '0'); + parent::_list($db); + } + + /** + * 用户添加 + */ + public function add() { + return $this->_form($this->table, 'form'); + } + + /** + * 用户编辑 + */ + public function edit() { + return $this->add(); + } + + /** + * 用户密码修改 + */ + public function pass() { + if (in_array('10000', explode(',', $this->request->post('id')))) { + $this->error('系统超级账号禁止操作!'); + } + if ($this->request->isGet()) { + return $this->_form($this->table, 'pass'); + } + $data = $this->request->post(); + if ($data['password'] !== $data['repassword']) { + $this->error('两次输入的密码不一致!'); + } + if (Data::save($this->table, ['id' => $data['id'], 'password' => md5($data['password'])], 'id')) { + $this->success('密码修改成功,下次请使用新密码登录!', ''); + } else { + $this->error('密码修改失败,请稍候再试!'); + } + } + + /** + * 表单数据默认处理 + * @param type $data + */ + public function _form_filter(&$data) { + if ($this->request->isPost()) { + if (isset($data['id'])) { + unset($data['username']); + } elseif (Db::name($this->table)->where('username', $data['username'])->find()) { + $this->error('用户账号已经存在,请使用其它账号!'); + } + } + } + + /** + * 删除用户 + */ + public function del() { + if (in_array('10000', explode(',', $this->request->post('id')))) { + $this->error('系统超级账号禁止删除!'); + } + if (Data::update($this->table)) { + $this->success("用户删除成功!", ''); + } else { + $this->error("用户删除失败,请稍候再试!"); + } + } + + /** + * 用户禁用 + */ + public function forbid() { + if (in_array('10000', explode(',', $this->request->post('id')))) { + $this->error('系统超级账号禁止操作!'); + } + if (Data::update($this->table)) { + $this->success("用户禁用成功!", ''); + } else { + $this->error("用户禁用失败,请稍候再试!"); + } + } + + /** + * 用户禁用 + */ + public function resume() { + if (Data::update($this->table)) { + $this->success("用户启用成功!", ''); + } else { + $this->error("用户启用失败,请稍候再试!"); + } } } diff --git a/application/admin/view/auth.form.html b/application/admin/view/auth.form.html index b7927d650..a266f4b24 100644 --- a/application/admin/view/auth.form.html +++ b/application/admin/view/auth.form.html @@ -18,7 +18,7 @@