title = '系统节点管理'; list($nodes, $groups) = [\app\admin\service\Auth::get(), []]; $this->nodes = Data::arr2table($nodes, 'node', 'pnode'); foreach ($this->nodes as $node) { $pnode = explode('/', $node['node'])[0]; if ($node['node'] === $pnode) $groups[$pnode]['node'] = $node; $groups[$pnode]['list'][] = $node; } $this->groups = $groups; $this->fetch(); } /** * 清理无效的节点数据 * @throws \ReflectionException * @throws \think\Exception * @throws \think\exception\PDOException */ public function clear() { $nodes = array_unique(array_column(\app\admin\service\Auth::get(), 'node')); if (false !== Db::name($this->table)->whereNotIn('node', $nodes)->delete()) { $this->success('清理无效的节点配置成功!', ''); } $this->error('清理无效的节点配置,请稍候再试!'); } /** * 更新数据记录 * @throws \think\Exception * @throws \think\exception\PDOException */ public function save() { if ($this->request->isPost()) { list($post, $data) = [$this->request->post(), []]; foreach ($post['list'] as $vo) if (!empty($vo['node'])) { $data['node'] = $vo['node']; $data[$vo['name']] = $vo['value']; } empty($data) || data_save($this->table, $data, 'node'); $this->success('节点配置保存成功!', ''); } $this->error('访问异常,请重新进入...'); } }