Category.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <?php
  2. namespace app\admin\controller\shopro;
  3. use app\common\controller\Backend;
  4. use app\admin\model\shopro\Category as CategoryModel;
  5. use fast\Tree;
  6. use think\Db;
  7. use think\exception\PDOException;
  8. use think\exception\ValidateException;
  9. use Exception;
  10. /**
  11. * 分类管理
  12. */
  13. class Category extends Backend
  14. {
  15. /**
  16. * @var \app\admin\model\shopro\Category
  17. */
  18. protected $model = null;
  19. protected $categorylist = [];
  20. protected $noNeedRight = ['selectpage', 'gettree'];
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. $this->model = model('app\admin\model\shopro\Category');
  25. }
  26. /**
  27. * 选择分类
  28. */
  29. public function select()
  30. {
  31. if ($this->request->isAjax()) {
  32. $list = $this->model->with('children.children.children')->where('pid', 0)->order('weigh desc, id asc')->select();
  33. $this->success('选择分类', null, $list);
  34. }
  35. return $this->view->fetch();
  36. }
  37. /**
  38. * 查看
  39. */
  40. public function index()
  41. {
  42. //设置过滤方法
  43. $this->request->filter(['strip_tags']);
  44. if ($this->request->isAjax()) {
  45. $list = $this->model->with('children.children.children')->where('pid', 0)->order('weigh desc, id asc')->select();
  46. $this->success('自定义分类', null, $list);
  47. }
  48. return $this->view->fetch();
  49. }
  50. /**
  51. * 添加自定义分类
  52. */
  53. public function add()
  54. {
  55. if ($this->request->isPost()) {
  56. $params = $this->request->post();
  57. if ($params) {
  58. $params = json_decode($params['data'], true);
  59. $result = false;
  60. Db::startTrans();
  61. try {
  62. $result = $this->model->allowField(true)->save($params);
  63. Db::commit();
  64. } catch (ValidateException $e) {
  65. Db::rollback();
  66. $this->error($e->getMessage());
  67. } catch (PDOException $e) {
  68. Db::rollback();
  69. $this->error($e->getMessage());
  70. } catch (Exception $e) {
  71. Db::rollback();
  72. $this->error($e->getMessage());
  73. }
  74. if ($result !== false) {
  75. $this->success('添加成功', null, $this->model->id);
  76. } else {
  77. $this->error(__('No rows were inserted'));
  78. }
  79. }
  80. $this->error(__('Parameter %s can not be empty', ''));
  81. }
  82. return $this->view->fetch();
  83. }
  84. /**
  85. * 编辑
  86. */
  87. public function edit($ids = null)
  88. {
  89. $row = $this->model->get($ids);
  90. if (!$row) {
  91. $this->error(__('No Results were found'));
  92. }
  93. if ($this->request->isPost()) {
  94. $params = $this->request->post();
  95. if ($params) {
  96. $params = json_decode($params['data'], true);
  97. $result = false;
  98. Db::startTrans();
  99. try {
  100. $result = $row->allowField(true)->save($params);
  101. $result = true;
  102. Db::commit();
  103. } catch (ValidateException $e) {
  104. Db::rollback();
  105. $this->error($e->getMessage());
  106. } catch (PDOException $e) {
  107. Db::rollback();
  108. $this->error($e->getMessage());
  109. } catch (Exception $e) {
  110. Db::rollback();
  111. $this->error($e->getMessage());
  112. }
  113. if ($result !== false) {
  114. $this->success();
  115. } else {
  116. $this->error(__('No rows were updated'));
  117. }
  118. }
  119. $this->error(__('Parameter %s can not be empty', ''));
  120. }
  121. $this->assignconfig("row", $row);
  122. return $this->view->fetch();
  123. }
  124. public function update($ids = null)
  125. {
  126. $row = $this->model->get($ids);
  127. if (!$row) {
  128. $this->error(__('No Results were found'));
  129. }
  130. $params = $this->request->post();
  131. if($params) {
  132. $data = json_decode($params['data'], true);
  133. //递归处理分类数据
  134. $this->createOrUpdateCategory($data, $ids);
  135. $this->success();
  136. }
  137. }
  138. private function createOrUpdateCategory($data, $pid)
  139. {
  140. foreach($data as $k => $v) {
  141. $v['pid'] = $pid;
  142. if(!empty($v['id'])) {
  143. $row = $this->model->get($v['id']);
  144. if($row) {
  145. if(isset($v['deleted']) && $v['deleted'] == 1) {
  146. $row->delete();
  147. }else {
  148. $row->allowField(true)->save($v);
  149. }
  150. }
  151. }else{
  152. $category = new \app\admin\model\shopro\Category;
  153. $category->allowField(true)->save($v);
  154. $v['id'] = $category->id;
  155. }
  156. if(!empty($v['children'])) {
  157. $this->createOrUpdateCategory($v['children'], $v['id']);
  158. }
  159. }
  160. }
  161. }