Menu.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use library\Controller;
  16. use library\service\MenuService;
  17. use library\tools\Data;
  18. use think\Db;
  19. /**
  20. * 系统菜单管理
  21. * Class Menu
  22. * @package app\admin\controller
  23. */
  24. class Menu extends Controller
  25. {
  26. /**
  27. * 当前操作数据库
  28. * @var string
  29. */
  30. protected $table = 'SystemMenu';
  31. /**
  32. * 系统菜单管理
  33. * @auth true
  34. * @menu true
  35. * @throws \think\Exception
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @throws \think\exception\DbException
  39. * @throws \think\exception\PDOException
  40. */
  41. public function index()
  42. {
  43. $this->title = '系统菜单管理';
  44. $this->_page($this->table, false);
  45. }
  46. /**
  47. * 列表数据处理
  48. * @param array $data
  49. */
  50. protected function _index_page_filter(&$data)
  51. {
  52. foreach ($data as &$vo) {
  53. if ($vo['url'] !== '#') {
  54. $vo['url'] = trim(url($vo['url']) . (empty($vo['params']) ? '' : "?{$vo['params']}"), '/\\');
  55. }
  56. $vo['ids'] = join(',', Data::getArrSubIds($data, $vo['id']));
  57. }
  58. $data = Data::arr2table($data);
  59. }
  60. /**
  61. * 添加系统菜单
  62. * @auth true
  63. * @throws \think\Exception
  64. * @throws \think\db\exception\DataNotFoundException
  65. * @throws \think\db\exception\ModelNotFoundException
  66. * @throws \think\exception\DbException
  67. * @throws \think\exception\PDOException
  68. */
  69. public function add()
  70. {
  71. $this->applyCsrfToken();
  72. $this->_form($this->table, 'form');
  73. }
  74. /**
  75. * 编辑系统菜单
  76. * @auth true
  77. * @throws \think\Exception
  78. * @throws \think\db\exception\DataNotFoundException
  79. * @throws \think\db\exception\ModelNotFoundException
  80. * @throws \think\exception\DbException
  81. * @throws \think\exception\PDOException
  82. */
  83. public function edit()
  84. {
  85. $this->applyCsrfToken();
  86. $this->_form($this->table, 'form');
  87. }
  88. /**
  89. * 表单数据处理
  90. * @param array $vo
  91. * @throws \ReflectionException
  92. * @throws \think\db\exception\DataNotFoundException
  93. * @throws \think\db\exception\ModelNotFoundException
  94. * @throws \think\exception\DbException
  95. */
  96. protected function _form_filter(&$vo)
  97. {
  98. if ($this->request->isGet()) {
  99. // 读取系统功能节点
  100. $this->nodes = MenuService::instance()->getList();
  101. // 选择自己的上级菜单
  102. if (empty($vo['pid']) && $this->request->get('pid', '0')) $vo['pid'] = $this->request->get('pid', '0');
  103. // 列出可选上级菜单
  104. $menus = Db::name($this->table)->where(['status' => '1'])->order('sort desc,id asc')->column('id,pid,url,title');
  105. $this->menus = Data::arr2table(array_merge($menus, [['id' => '0', 'pid' => '-1', 'url' => '#', 'title' => '顶部菜单']]));
  106. if (isset($vo['id'])) foreach ($this->menus as $key => $menu) if ($menu['id'] === $vo['id']) $vo = $menu;
  107. foreach ($this->menus as $key => &$menu) {
  108. if ($menu['spt'] >= 3 || $menu['url'] !== '#') unset($this->menus[$key]);
  109. if (isset($vo['spt']) && $vo['spt'] <= $menu['spt']) unset($this->menus[$key]);
  110. }
  111. }
  112. }
  113. /**
  114. * 启用系统菜单
  115. * @auth true
  116. * @throws \think\Exception
  117. * @throws \think\exception\PDOException
  118. */
  119. public function resume()
  120. {
  121. $this->applyCsrfToken();
  122. $this->_save($this->table, ['status' => '1']);
  123. }
  124. /**
  125. * 禁用系统菜单
  126. * @auth true
  127. * @throws \think\Exception
  128. * @throws \think\exception\PDOException
  129. */
  130. public function forbid()
  131. {
  132. $this->applyCsrfToken();
  133. $this->_save($this->table, ['status' => '0']);
  134. }
  135. /**
  136. * 删除系统菜单
  137. * @auth true
  138. * @throws \think\Exception
  139. * @throws \think\exception\PDOException
  140. */
  141. public function remove()
  142. {
  143. $this->applyCsrfToken();
  144. $this->_delete($this->table);
  145. }
  146. }