Category.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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\tools\Data;
  17. use think\Db;
  18. use think\facade\Hook;
  19. use think\Request;
  20. /**
  21. * 分类管理
  22. */
  23. class Category extends Controller
  24. {
  25. /**
  26. * 绑定数据表
  27. * @var string
  28. */
  29. protected $table = 'system_goods_cate';
  30. /**
  31. * 分类管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @throws \think\exception\DbException
  38. * @throws \think\exception\PDOException
  39. */
  40. public function index()
  41. {
  42. $this->title = '分类管理';
  43. $query = $this->_query($this->table)->where('pid', 0)->like('title');
  44. if (isset($_GET['status']) && $_GET['status']!=''){
  45. $query->where('status',$_GET['status']);
  46. }
  47. if (isset($_GET['label_id']) && $_GET['label_id']!=''){
  48. $query->where('label_id',$_GET['label_id']);
  49. }
  50. $query->where('is_deleted', 0)
  51. ->order('pid asc,id desc')
  52. ->page();
  53. }
  54. /**
  55. * 列表数据处理
  56. * @param array $data
  57. */
  58. protected function _index_page_filter(&$data)
  59. {
  60. foreach ($data as &$vo) {
  61. $vo['children'] = Db::name($this->table)
  62. ->where('is_deleted', 0)
  63. ->where('pid', $vo['id'])
  64. ->select();
  65. foreach ($vo['children'] as &$v) {
  66. $v['children'] = Db::name($this->table)
  67. ->where('is_deleted', 0)
  68. ->where('pid', $v['id'])
  69. ->select();
  70. }
  71. }
  72. $data = Data::arr2table($data);
  73. // dump($data);die;
  74. }
  75. /**
  76. * 添加分类
  77. * @auth true
  78. * @throws \think\Exception
  79. * @throws \think\db\exception\DataNotFoundException
  80. * @throws \think\db\exception\ModelNotFoundException
  81. * @throws \think\exception\DbException
  82. * @throws \think\exception\PDOException
  83. */
  84. public function add()
  85. {
  86. $this->_form($this->table, 'form');
  87. }
  88. /**
  89. * 编辑分类
  90. * @auth true
  91. * @throws \think\Exception
  92. * @throws \think\db\exception\DataNotFoundException
  93. * @throws \think\db\exception\ModelNotFoundException
  94. * @throws \think\exception\DbException
  95. * @throws \think\exception\PDOException
  96. */
  97. public function edit()
  98. {
  99. $this->_form($this->table, 'form');
  100. }
  101. /**
  102. * 表单数据处理
  103. * @param array $vo
  104. * @throws \ReflectionException
  105. * @throws \think\db\exception\DataNotFoundException
  106. * @throws \think\db\exception\ModelNotFoundException
  107. * @throws \think\exception\DbException
  108. */
  109. protected function _form_filter(&$vo)
  110. {
  111. if ($this->request->isGet()) {
  112. // 选择自己的上级分类
  113. if (empty($vo['pid']) && $this->request->get('pid', '0')) $vo['pid'] = $this->request->get('pid', '0');
  114. // 列出可选上级分类
  115. $menus = Db::name($this->table)->where(['status' => '1'])->where('is_deleted', 0)->order('id asc')->column('id,pid,title');
  116. $this->menus = Data::arr2table(array_merge($menus, [['id' => '0', 'pid' => '-1', 'title' => '一级分类']]));
  117. if (isset($vo['id'])) foreach ($this->menus as $key => $menu) if ($menu['id'] === $vo['id']) $vo = $menu;
  118. foreach ($this->menus as $key => &$menu) {
  119. if ($menu['spt'] >= 3) unset($this->menus[$key]);
  120. }
  121. //dump($this->menus);die;
  122. }elseif ($this->request->isPost()){
  123. $pid = request()->post('pid');
  124. $id = request()->post('id');
  125. if ($pid == $id) $this->error('上级分类不能是自身');
  126. }
  127. }
  128. /**
  129. * 禁用分类
  130. * @auth true
  131. * @throws \think\Exception
  132. * @throws \think\exception\PDOException
  133. */
  134. public function forbid()
  135. {
  136. $this->applyCsrfToken();
  137. $this->_save($this->table, ['status' => '0']);
  138. }
  139. /**
  140. * 启用分类
  141. * @auth true
  142. * @throws \think\Exception
  143. * @throws \think\exception\PDOException
  144. */
  145. public function resume()
  146. {
  147. $this->applyCsrfToken();
  148. $this->_save($this->table, ['status' => '1']);
  149. }
  150. /**
  151. * 删除分类
  152. * @auth true
  153. * @throws \think\Exception
  154. * @throws \think\exception\PDOException
  155. */
  156. public function remove()
  157. {
  158. $this->_delete($this->table);
  159. }
  160. }