Menu.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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 app\admin\service\NodeService;
  16. use library\Controller;
  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. */
  36. public function index()
  37. {
  38. $this->title = '系统菜单管理';
  39. $this->_page($this->table, false);
  40. }
  41. /**
  42. * 列表数据处理
  43. * @param array $data
  44. */
  45. protected function _index_page_filter(&$data)
  46. {
  47. foreach ($data as &$vo) {
  48. if ($vo['url'] !== '#') {
  49. $vo['url'] = url($vo['url']) . (empty($vo['params']) ? '' : "?{$vo['params']}");
  50. }
  51. $vo['ids'] = join(',', Data::getArrSubIds($data, $vo['id']));
  52. }
  53. $data = Data::arr2table($data);
  54. }
  55. /**
  56. * 添加系统菜单
  57. * @auth true
  58. */
  59. public function add()
  60. {
  61. $this->applyCsrfToken();
  62. $this->_form($this->table, 'form');
  63. }
  64. /**
  65. * 编辑系统菜单
  66. * @auth true
  67. */
  68. public function edit()
  69. {
  70. $this->applyCsrfToken();
  71. $this->_form($this->table, 'form');
  72. }
  73. /**
  74. * 表单数据处理
  75. * @param array $vo
  76. * @throws \ReflectionException
  77. * @throws \think\db\exception\DataNotFoundException
  78. * @throws \think\db\exception\ModelNotFoundException
  79. * @throws \think\exception\DbException
  80. */
  81. protected function _form_filter(&$vo)
  82. {
  83. if ($this->request->isGet()) {
  84. $menus = Db::name($this->table)->where(['status' => '1'])->order('sort desc,id asc')->select();
  85. $menus[] = ['title' => '顶级菜单', 'id' => '0', 'pid' => '-1'];
  86. foreach ($this->menus = Data::arr2table($menus) as $key => &$menu) {
  87. if (substr_count($menu['path'], '-') > 3) unset($this->menus[$key]); # 移除三级以下的菜单
  88. elseif (isset($vo['pid']) && $vo['pid'] !== '' && $cur = "-{$vo['pid']}-{$vo['id']}") {
  89. if (stripos("{$menu['path']}-", "{$cur}-") !== false || $menu['path'] === $cur) unset($this->menus[$key]); # 移除与自己相关联的菜单
  90. }
  91. }
  92. // 选择自己的上级菜单
  93. if (empty($vo['pid']) && $this->request->get('pid', '0')) {
  94. $vo['pid'] = $this->request->get('pid', '0');
  95. }
  96. // 读取系统功能节点
  97. $this->nodes = NodeService::getMenuNodeList();
  98. }
  99. }
  100. /**
  101. * 启用系统菜单
  102. * @auth true
  103. */
  104. public function resume()
  105. {
  106. $this->applyCsrfToken();
  107. $this->_save($this->table, ['status' => '1']);
  108. }
  109. /**
  110. * 禁用系统菜单
  111. * @auth true
  112. */
  113. public function forbid()
  114. {
  115. $this->applyCsrfToken();
  116. $this->_save($this->table, ['status' => '0']);
  117. }
  118. /**
  119. * 删除系统菜单
  120. * @auth true
  121. */
  122. public function remove()
  123. {
  124. $this->applyCsrfToken();
  125. $this->_delete($this->table);
  126. }
  127. }