CountyMenu.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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 CountyMenu 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->_query($this->table)->where('is_county',1)->page(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. }else{
  114. $vo['is_county'] = 1;
  115. }
  116. }
  117. /**
  118. * 菜单编辑成功后刷新页面
  119. * @param bool $state
  120. */
  121. protected function _form_result(bool $state)
  122. {
  123. if ($state) {
  124. $this->success('系统菜单修改成功!', 'javascript:location.reload()');
  125. }
  126. }
  127. /**
  128. * 修改菜单状态
  129. * @auth true
  130. * @throws \think\db\exception\DbException
  131. */
  132. public function state()
  133. {
  134. $this->_applyFormToken();
  135. $this->_save($this->table, $this->_vali([
  136. 'status.in:0,1' => '状态值范围异常!',
  137. 'status.require' => '状态值不能为空!',
  138. ]));
  139. }
  140. /**
  141. * 删除系统菜单
  142. * @auth true
  143. * @throws \think\db\exception\DbException
  144. */
  145. public function remove()
  146. {
  147. $this->_applyFormToken();
  148. $this->_delete($this->table);
  149. }
  150. /**
  151. * 表单结果处理
  152. * @param bool $result
  153. */
  154. protected function _add_form_result(bool $result)
  155. {
  156. if ($result) {
  157. $id = $this->app->db->name($this->table)->getLastInsID();
  158. sysoplog('系统菜单管理', "添加系统菜单[{$id}]成功");
  159. }
  160. }
  161. /**
  162. * 表单结果处理
  163. * @param boolean $result
  164. */
  165. protected function _edit_form_result(bool $result)
  166. {
  167. if ($result) {
  168. $id = input('id') ?: 0;
  169. sysoplog('系统菜单管理', "修改系统菜单[{$id}]成功");
  170. }
  171. }
  172. /**
  173. * 状态结果处理
  174. * @param boolean $result
  175. */
  176. protected function _state_save_result(bool $result)
  177. {
  178. if ($result) {
  179. [$id, $state] = [input('id'), input('status')];
  180. sysoplog('系统菜单管理', ($state ? '激活' : '禁用') . "系统菜单[{$id}]成功");
  181. }
  182. }
  183. /**
  184. * 删除结果处理
  185. * @param boolean $result
  186. */
  187. protected function _remove_delete_result(bool $result)
  188. {
  189. if ($result) {
  190. $id = input('id') ?: 0;
  191. sysoplog('系统菜单管理', "删除系统菜单[{$id}]成功");
  192. }
  193. }
  194. }