Menu.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://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 think\admin\Controller;
  16. use think\admin\extend\DataExtend;
  17. use think\admin\service\AdminService;
  18. use think\admin\service\MenuService;
  19. use think\admin\service\NodeService;
  20. /**
  21. * 系统菜单管理
  22. * Class Menu
  23. * @package app\admin\controller
  24. */
  25. class Menu extends Controller
  26. {
  27. /**
  28. * 当前操作数据库
  29. * @var string
  30. */
  31. private $table = 'SystemMenu';
  32. /**
  33. * 系统菜单管理
  34. * @auth true
  35. * @menu true
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\DbException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. */
  40. public function index()
  41. {
  42. $this->title = '系统菜单管理';
  43. $this->_page($this->table, false);
  44. }
  45. /**
  46. * 列表数据处理
  47. * @param array $data
  48. */
  49. protected function _index_page_filter(array &$data)
  50. {
  51. foreach ($data as &$vo) {
  52. if ($vo['url'] !== '#' && !preg_match('#^https?://#', $vo['url'])) {
  53. $vo['url'] = trim(url($vo['url']) . ($vo['params'] ? "?{$vo['params']}" : ''), '\\/');
  54. }
  55. $vo['ids'] = join(',', DataExtend::getArrSubIds($data, $vo['id']));
  56. }
  57. $data = DataExtend::arr2table($data);
  58. }
  59. /**
  60. * 添加系统菜单
  61. * @auth true
  62. * @throws \think\db\exception\DataNotFoundException
  63. * @throws \think\db\exception\DbException
  64. * @throws \think\db\exception\ModelNotFoundException
  65. */
  66. public function add()
  67. {
  68. $this->_applyFormToken();
  69. $this->_form($this->table, 'form');
  70. }
  71. /**
  72. * 编辑系统菜单
  73. * @auth true
  74. * @throws \think\db\exception\DataNotFoundException
  75. * @throws \think\db\exception\DbException
  76. * @throws \think\db\exception\ModelNotFoundException
  77. */
  78. public function edit()
  79. {
  80. $this->_applyFormToken();
  81. $this->_form($this->table, 'form');
  82. }
  83. /**
  84. * 表单数据处理
  85. * @param array $vo
  86. * @throws \ReflectionException
  87. */
  88. protected function _form_filter(array &$vo)
  89. {
  90. if ($this->request->isGet()) {
  91. /* 清理权限节点 */
  92. if ($this->app->isDebug()) {
  93. AdminService::instance()->clearCache();
  94. }
  95. /* 选择自己的上级菜单 */
  96. $vo['pid'] = $vo['pid'] ?? input('pid', '0');
  97. /* 读取系统功能节点 */
  98. $this->auths = [];
  99. $this->nodes = MenuService::instance()->getList();
  100. foreach (NodeService::instance()->getMethods() as $node => $item) {
  101. if ($item['isauth'] && substr_count($node, '/') >= 2) {
  102. $this->auths[] = ['node' => $node, 'title' => $item['title']];
  103. }
  104. }
  105. /* 列出可选上级菜单 */
  106. $menus = $this->app->db->name($this->table)->order('sort desc,id asc')->column('id,pid,icon,url,node,title,params', 'id');
  107. $this->menus = DataExtend::arr2table(array_merge($menus, [['id' => '0', 'pid' => '-1', 'url' => '#', 'title' => '顶部菜单']]));
  108. if (isset($vo['id'])) foreach ($this->menus as $menu) if ($menu['id'] === $vo['id']) $vo = $menu;
  109. foreach ($this->menus as $key => $menu) if ($menu['spt'] >= 3 || $menu['url'] !== '#') unset($this->menus[$key]);
  110. if (isset($vo['spt']) && isset($vo['spc']) && in_array($vo['spt'], [1, 2]) && $vo['spc'] > 0) {
  111. foreach ($this->menus as $key => $menu) if ($vo['spt'] <= $menu['spt']) unset($this->menus[$key]);
  112. }
  113. }
  114. }
  115. /**
  116. * 菜单编辑成功后刷新页面
  117. * @param bool $state
  118. */
  119. protected function _form_result(bool $state)
  120. {
  121. if ($state) {
  122. $this->success('系统菜单修改成功!', 'javascript:location.reload()');
  123. }
  124. }
  125. /**
  126. * 修改菜单状态
  127. * @auth true
  128. * @throws \think\db\exception\DbException
  129. */
  130. public function state()
  131. {
  132. $this->_applyFormToken();
  133. $this->_save($this->table, $this->_vali([
  134. 'status.in:0,1' => '状态值范围异常!',
  135. 'status.require' => '状态值不能为空!',
  136. ]));
  137. }
  138. /**
  139. * 删除系统菜单
  140. * @auth true
  141. * @throws \think\db\exception\DbException
  142. */
  143. public function remove()
  144. {
  145. $this->_applyFormToken();
  146. $this->_delete($this->table);
  147. }
  148. /**
  149. * 表单结果处理
  150. * @param bool $result
  151. */
  152. protected function _add_form_result(bool $result)
  153. {
  154. if ($result) {
  155. $id = $this->app->db->name($this->table)->getLastInsID();
  156. sysoplog('系统菜单管理', "添加系统菜单[{$id}]成功");
  157. }
  158. }
  159. /**
  160. * 表单结果处理
  161. * @param boolean $result
  162. */
  163. protected function _edit_form_result(bool $result)
  164. {
  165. if ($result) {
  166. $id = input('id') ?: 0;
  167. sysoplog('系统菜单管理', "修改系统菜单[{$id}]成功");
  168. }
  169. }
  170. /**
  171. * 状态结果处理
  172. * @param boolean $result
  173. */
  174. protected function _state_save_result(bool $result)
  175. {
  176. if ($result) {
  177. [$id, $state] = [input('id'), input('status')];
  178. sysoplog('系统菜单管理', ($state ? '激活' : '禁用') . "系统菜单[{$id}]成功");
  179. }
  180. }
  181. /**
  182. * 删除结果处理
  183. * @param boolean $result
  184. */
  185. protected function _remove_delete_result(bool $result)
  186. {
  187. if ($result) {
  188. $id = input('id') ?: 0;
  189. sysoplog('系统菜单管理', "删除系统菜单[{$id}]成功");
  190. }
  191. }
  192. }