Region.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. namespace app\mall\controller;
  3. use library\Controller;
  4. use library\service\MenuService;
  5. use library\tools\Data;
  6. use think\Db;
  7. use function AlibabaCloud\Client\value;
  8. /**
  9. * 专区
  10. * Class Region
  11. * @package app\mall\controller
  12. */
  13. class Region extends Controller
  14. {
  15. /**
  16. * 绑定数据表
  17. * @var string
  18. */
  19. protected $table = 'RegionMenu';
  20. /**
  21. * 专区列表
  22. * @auth true
  23. * @menu true
  24. * @throws \think\Exception
  25. * @throws \think\db\exception\DataNotFoundException
  26. * @throws \think\db\exception\ModelNotFoundException
  27. * @throws \think\exception\DbException
  28. * @throws \think\exception\PDOException
  29. */
  30. public function index()
  31. {
  32. $this->title = '专区列表';
  33. $query = $this->_query($this->table)->where('is_deleted',0)->page(false);
  34. }
  35. /**
  36. * 数据列表处理
  37. * @auth true
  38. * @menu true
  39. * @param array $data
  40. * @throws \think\db\exception\DataNotFoundException
  41. * @throws \think\db\exception\ModelNotFoundException
  42. * @throws \think\exception\DbException
  43. */
  44. protected function _index_page_filter(&$data)
  45. {
  46. foreach ($data as &$vo) {
  47. $vo['ids'] = join(',', Data::getArrSubIds($data, $vo['id']));
  48. }
  49. $data = Data::arr2table($data);
  50. }
  51. /**
  52. * 添加专区
  53. * @auth true
  54. * @menu true
  55. * @throws \think\Exception
  56. * @throws \think\db\exception\DataNotFoundException
  57. * @throws \think\db\exception\ModelNotFoundException
  58. * @throws \think\exception\DbException
  59. * @throws \think\exception\PDOException
  60. */
  61. public function add()
  62. {
  63. $this->title = '添加专区';
  64. $this->_form($this->table, 'form');
  65. }
  66. /**
  67. * 编辑专区
  68. * @auth true
  69. * @menu true
  70. * @throws \think\Exception
  71. * @throws \think\db\exception\DataNotFoundException
  72. * @throws \think\db\exception\ModelNotFoundException
  73. * @throws \think\exception\DbException
  74. * @throws \think\exception\PDOException
  75. */
  76. public function edit()
  77. {
  78. $this->title = '编辑专区';
  79. $this->_form($this->table, 'form');
  80. }
  81. /**
  82. * 表单数据处理
  83. * @param array $vo
  84. * @throws \ReflectionException
  85. * @throws \think\db\exception\DataNotFoundException
  86. * @throws \think\db\exception\ModelNotFoundException
  87. * @throws \think\exception\DbException
  88. */
  89. protected function _form_filter(&$vo)
  90. {
  91. if ($this->request->isGet()) {
  92. // 读取系统功能节点
  93. $this->nodes = MenuService::instance()->getList();
  94. // 选择自己的上级专区
  95. if (empty($vo['pid']) && $this->request->get('pid', '0')) $vo['pid'] = $this->request->get('pid', '0');
  96. // 列出可选上级专区
  97. $menus = Db::name($this->table)->where(['status' => '1'])->order('sort desc,id asc')->column('id,pid,title,logo,desc');
  98. $this->menus = Data::arr2table(array_merge($menus, [['id' => '0', 'pid' => '-1', 'title' => '顶级专区']]));
  99. if (isset($vo['id'])) foreach ($this->menus as $key => $menu) if ($menu['id'] === $vo['id']) $vo = $menu;
  100. foreach ($this->menus as $key => &$menu) {
  101. if ($menu['spt'] >= 3) unset($this->menus[$key]);
  102. if (isset($vo['spt']) && $vo['spt'] <= $menu['spt']) unset($this->menus[$key]);
  103. }
  104. }
  105. if($this->request->isPost() && in_array($this->request->action(),['add','edit'])){
  106. if(!isset($vo['id']) && $vo['pid']){
  107. $plev = Db::name($this->table)->where('id',$vo['pid'])->value('lev');
  108. $vo['lev'] = $plev + 1;
  109. }
  110. }
  111. }
  112. /**
  113. * 启用
  114. * @auth true
  115. * @menu true
  116. * @throws \think\Exception
  117. * @throws \think\exception\PDOException
  118. */
  119. public function resume()
  120. {
  121. $this->_save($this->table, ['status' => '1']);
  122. }
  123. /**
  124. * 禁用
  125. * @auth true
  126. * @menu true
  127. * @throws \think\Exception
  128. * @throws \think\db\exception\DataNotFoundException
  129. * @throws \think\db\exception\ModelNotFoundException
  130. * @throws \think\exception\DbException
  131. * @throws \think\exception\PDOException
  132. */
  133. public function forbid()
  134. {
  135. $this->_save($this->table, ['status' => '0']);
  136. }
  137. /**
  138. * 删除
  139. * @auth true
  140. * @menu true
  141. * @throws \think\Exception
  142. * @throws \think\exception\PDOException
  143. */
  144. public function remove()
  145. {
  146. $this->_save($this->table, ['is_deleted' => 1]);
  147. }
  148. }