GoodsCate.php 4.6 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\mall\controller;
  15. use library\Controller;
  16. use library\service\MenuService;
  17. use library\tools\Data;
  18. use think\Db;
  19. /**
  20. * 分类管理
  21. * Class GoodsCate
  22. * @package app\admin\controller
  23. */
  24. class GoodsCate extends Controller
  25. {
  26. /**
  27. * 当前操作数据库
  28. * @var string
  29. */
  30. protected $table = 'GoodsCate';
  31. /**
  32. * 分类管理
  33. * @auth true
  34. * @menu true
  35. * @throws \think\Exception
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @throws \think\exception\DbException
  39. * @throws \think\exception\PDOException
  40. */
  41. public function index()
  42. {
  43. $this->title = '分类管理';
  44. $query = $this->_query($this->table)->where('is_deleted',0)->where('pid',0)->order('id desc ,id asc')->page(false);
  45. }
  46. /**
  47. * 列表数据处理
  48. * @param array $data
  49. */
  50. protected function _index_page_filter(&$data)
  51. {
  52. foreach ($data as &$vo) {
  53. $vo['ids'] = join(',', Data::getArrSubIds($data, $vo['id']));
  54. }
  55. $data = Data::arr2table($data);
  56. }
  57. /**
  58. * 添加分类
  59. * @auth true
  60. * @throws \think\Exception
  61. * @throws \think\db\exception\DataNotFoundException
  62. * @throws \think\db\exception\ModelNotFoundException
  63. * @throws \think\exception\DbException
  64. * @throws \think\exception\PDOException
  65. */
  66. public function add()
  67. {
  68. $this->_form($this->table, 'form');
  69. }
  70. /**
  71. * 编辑分类
  72. * @auth true
  73. * @throws \think\Exception
  74. * @throws \think\db\exception\DataNotFoundException
  75. * @throws \think\db\exception\ModelNotFoundException
  76. * @throws \think\exception\DbException
  77. * @throws \think\exception\PDOException
  78. */
  79. public function edit()
  80. {
  81. $this->_form($this->table, 'form');
  82. }
  83. /**
  84. * 表单数据处理
  85. * @param array $vo
  86. * @throws \ReflectionException
  87. * @throws \think\db\exception\DataNotFoundException
  88. * @throws \think\db\exception\ModelNotFoundException
  89. * @throws \think\exception\DbException
  90. */
  91. protected function _form_filter(&$data)
  92. {
  93. if($this->request->action() == 'edit') unset($data['pid']);
  94. }
  95. /**
  96. * 启用分类
  97. * @auth true
  98. * @throws \think\Exception
  99. * @throws \think\exception\PDOException
  100. */
  101. public function resume()
  102. {
  103. $this->_save($this->table, ['status' => '1']);
  104. }
  105. /**
  106. * 禁用分类
  107. * @auth true
  108. * @throws \think\Exception
  109. * @throws \think\exception\PDOException
  110. */
  111. public function forbid()
  112. {
  113. $this->_save($this->table, ['status' => '0']);
  114. }
  115. /**
  116. * 删除分类
  117. * @auth true
  118. * @throws \think\Exception
  119. * @throws \think\exception\PDOException
  120. */
  121. public function remove()
  122. {
  123. $this->_delete($this->table);
  124. }
  125. /**
  126. * 二级分类列表
  127. * @auth true
  128. * @menu true
  129. * @throws \think\Exception
  130. * @throws \think\exception\PDOException
  131. */
  132. public function second(){
  133. $this->title ='二级分类';
  134. $pid = input('pid');
  135. $list = $this->_query('GoodsCate')
  136. ->where(['is_deleted'=>0,'pid'=>$pid])
  137. ->like('title')
  138. ->order('id desc')->page();
  139. $this->assign('list',$list);
  140. $this->fetch('');
  141. }
  142. /**
  143. * 三级分类列表
  144. * @auth true
  145. * @menu true
  146. * @throws \think\Exception
  147. * @throws \think\exception\PDOException
  148. */
  149. public function third(){
  150. $this->title ='三级分类';
  151. $pid = input('pid');
  152. $list = $this->_query('GoodsCate')
  153. ->where(['is_deleted'=>0,'pid'=>$pid])
  154. ->like('title')
  155. ->order('id desc')->page();
  156. $this->assign('list',$list);
  157. $this->fetch('');
  158. }
  159. }