diff --git a/application/admin/controller/Menu.php b/application/admin/controller/Menu.php new file mode 100644 index 000000000..59757b297 --- /dev/null +++ b/application/admin/controller/Menu.php @@ -0,0 +1,181 @@ + '本窗口打开', + '_blank' => '新窗口打开', + '_parent' => '父窗口打开', + '_top' => '顶级窗口打开', + ); + + public function index() { + $db = Db::table($this->table); + parent::_list($db, false); + } + + /** + * 列表数据处理 + * + * @param type $data + */ + protected function _index_data_filter(&$data) { + foreach ($data as &$vo) { + if ($vo['url'] !== '#') { + $vo['url'] = url($vo['url']); + } + $vo['ids'] = join(',', Tools::getArrSubIds($data, $vo['id'])); + } + $data = Tools::arr2table($data); + } + + /** + * 新增编辑方法 + * + */ + public function form() { + if (request()->method() === 'GET' && input('get.action') === 'nodelist') { + /* + * 构建节点数组 + */ + $list = Db::table("system_node")->where(array("status" => 1, "is_menu" => 1))->order("module asc,controller asc")->select(); + $new_data = array(); + foreach ($list as $value) { + if (empty($value['pnode'])) { + //主节点 + $new_data[$value['module']]['node'] = $value['module']; + $new_data[$value['module']]['title'] = $value['menu_desc']; + } elseif (substr_count($value['pnode'], '/') == 0) { + //二级节点 + $new_data[$value['module']]["_sub_"][$value['controller']]["node"] = $value['pnode']; + $new_data[$value['module']]["_sub_"][$value['controller']]["title"] = $value['menu_desc']; + } else { + //三级节点 + $new_data[$value['module']]["_sub_"][$value['controller']]["_sub_"][$value['method']] = array("node" => $value['node'], "title" => $value['menu_desc']); + } + } + return $new_data; + } + + if (request()->method() == "POST") { + $post = input("post."); + $db = db($this->table); + if (!isset($post['id'])) { + if ($db->insert($post)) { + $url = url('system/nodes/index'); + $this->success("数据保存成功", "javascript:$.form.open('{$url}')"); + } else { + $this->error("数据保存失败"); + } + } else { + Data::save($db, $post); + $this->success("数据保存成功"); + } + } else { + $id = input("get.id"); + $vo = Db::table($this->table)->where(array("id" => $id, 'status' => 1))->find(); + $this->assign("vo", $vo); + /* 去除自己的菜单及子菜单 */ + $menus = Tools::arr2table(Db::table('system_menu')->where('status', '1')->order('sort ASC,id ASC')->select()); + foreach ($menus as $key => &$menu) { + $current_path = "-{$vo['pid']}-{$vo['id']}"; + if ($vo['pid'] !== '' && (stripos("{$menu['path']}-", "{$current_path}-") !== false || $menu['path'] === $current_path)) { + unset($menus[$key]); + } + } + $this->assign('menus', $menus); + //节点 + $db = Db::table("system_node"); + $db->field('node,is_menu,menu_desc')->where('is_menu', '1')->order('node ASC'); + $nodes = parent::_list($db, false, false); + $this->assign('nodes', $nodes['list']); + $this->assign("ptitle", "编辑菜单"); + exit($this->display()); + } + } + + /** + * 删除菜单 + */ + public function del() { + if (Data::update($this->table)) { + $this->success("菜单删除成功!"); + } else { + $this->error("菜单删除失败,请稍候再试!"); + } + } + + /** + * 菜单禁用 + */ + public function forbid() { + if (Data::update($this->table)) { + $this->success("菜单禁用成功!"); + } else { + $this->error("菜单禁用失败,请稍候再试!"); + } + } + + /** + * 菜单禁用 + */ + public function resume() { + if (Data::update($this->table)) { + $this->success("菜单启用成功!"); + } else { + $this->error("菜单启用失败,请稍候再试!"); + } + } + + /** + * 读取菜单节点数据 + * @return array + */ + private function _getMenuNodeData() { + $list = Node::getNodeArrayTree(implode(",", Node::getDir(APP_PATH))); + unset($list['Admin']['Public'], $list['Admin']['Index']); + //只识别菜单属性的节点 + foreach ($list as $key => $module) { + foreach ($module as $_key => $action) { + foreach ($action as $__key => $method) { + if (!isset($method['menu']) || !is_array($method['menu']) || empty($method['menu']['status'])) { + unset($list[$key][$_key][$__key]); + } + } + } + } + return $list; + } + +} diff --git a/application/admin/view/menu.index.html b/application/admin/view/menu.index.html new file mode 100644 index 000000000..2cfb67ccb --- /dev/null +++ b/application/admin/view/menu.index.html @@ -0,0 +1,69 @@ +
\ No newline at end of file diff --git a/extend/controller/BasicAdmin.php b/extend/controller/BasicAdmin.php index f08a4667e..0e6e9eb18 100644 --- a/extend/controller/BasicAdmin.php +++ b/extend/controller/BasicAdmin.php @@ -3,6 +3,7 @@ namespace controller; use think\Controller; +use think\db\Query; /** * 后台权限基础控制器 @@ -20,6 +21,10 @@ class BasicAdmin extends Controller { if (!$this->isLogin()) { $this->redirect('@admin/login'); } + // 初始化赋值常用变量 + if ($this->request->isGet()) { + $this->assign('classuri', strtolower($this->request->module() . '/' . $this->request->controller())); + } } /** @@ -33,4 +38,98 @@ class BasicAdmin extends Controller { } return true; } + + /** + * 列表集成处理方法 + * @param Query $db 数据库查询对象 + * @param bool $is_page 是启用分页 + * @param bool $is_display 是否直接输出显示 + * @param bool $total 总记录数 + * @return array|string + */ + protected function _list($db = null, $is_page = true, $is_display = true, $total = false) { + is_null($db) && $db = db($this->table); + is_string($db) && $db = db($db); + !$db->getTable() && $db->setTable($this->table); + # 列表排序默认处理 + if ($this->request->isPost() && $this->request->post('action') === 'resort') { + $data = $this->request->post(); + unset($data['action']); + foreach ($data as $key => &$value) { + if (false === $db->where('id', intval(ltrim($key, '_')))->update(['sort' => $value])) { + $this->error('列表排序失败,请稍候再试!'); + } + } + $this->success('列表排序成功,正在刷新列表!', 'javascript:location.reload()'); + } + # 列表显示 + $result = array(); + if ($is_page) { + $row_page = $this->request->get('rows', cookie('rows'), 'intval'); + cookie('rows', $row_page >= 10 ? $row_page : 10); + $page = $db->paginate($row_page, $total, ['query' => input('get.')]); + $result['list'] = $page->all(); + $result['page'] = preg_replace(['|href="(.*?)"|', '|pagination|'], ['data-open="$1" href="javascript:void(0);"', 'pagination pull-right'], $page->render()); + } else { + $result['list'] = $db->select(); + } + if ($this->_callback('_data_filter', $result['list']) === false) { + return $result; + } + $is_display && exit($this->fetch('', $result)); + return $result; + } + + /** + * 表单默认操作 + * @param Query $db 数据库查询对象 + * @param string $tpl 显示模板名字 + * @param string $pk 更新主键规则 + * @param array $where 查询规则 + * @param array $data 扩展数据 + * @return array|string + */ + protected function _form($db = null, $tpl = null, $pk = null, $where = [], $data = []) { + is_null($db) && $db = db($this->table); + is_string($db) && $db = db($db); + !$db->getTable() && $db->setTable($this->table); + is_null($pk) && $pk = $db->getPk(); + $pk_value = input($pk, isset($where[$pk]) ? $where[$pk] : (isset($data[$pk]) ? $data[$pk] : '')); + $vo = $data; + if ($this->request->isPost()) { // Save Options + $vo = array_merge(input('post.'), $data); + $this->_callback('_form_filter', $vo); + $result = Data::save($db, $vo, $pk, $where); + if (false !== $this->_callback('_form_result', $result)) { + $back = $pk_value === '' ? 'javascript:history.back();' : 'javascript:$.form.reload();'; + $result !== false ? $this->success('恭喜,保存成功哦!', $back) : $this->error('保存失败,请稍候再试!'); + } + return $result; + } + if ($pk_value !== '') { // Edit Options + !empty($pk_value) && $db->where($pk, $pk_value); + !empty($where) && $db->where($where); + $vo = array_merge($data, (array)$db->find()); + } + $this->_callback('_form_filter', $vo); + $this->assign('vo', $vo); + empty($this->ptitle) or $this->assign('ptitle', $this->ptitle); + return is_null($tpl) ? $vo : $this->display($tpl); + } + + + /** + * 当前对象回调成员方法 + * @param string $method + * @param array $data + * @return bool + */ + protected function _callback($method, &$data) { + foreach (array($method, "_" . $this->request->action() . "{$method}") as $method) { + if (method_exists($this, $method) && false === $this->$method($data)) { + return false; + } + } + return true; + } } \ No newline at end of file