Category.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. namespace addons\shopro\controller;
  3. use addons\shopro\model\Category as CategoryModel;
  4. use addons\shopro\model\Goods;
  5. /**
  6. * 分类管理
  7. *
  8. * @icon fa fa-list
  9. * @remark 用于统一管理网站的所有分类,分类可进行无限级分类,分类类型请在常规管理->系统配置->字典配置中添加
  10. */
  11. class Category extends Base
  12. {
  13. protected $noNeedLogin = ['*'];
  14. protected $noNeedRight = ['*'];
  15. public function detail () {
  16. $id = $this->request->get('id');
  17. $data = CategoryModel::getCategoryDetail($id);
  18. $this->success('商城分类', $data);
  19. }
  20. public function index()
  21. {
  22. $id = $this->request->get('id');
  23. $data = CategoryModel::getCategoryList($id);
  24. $this->success('商城分类', $data);
  25. }
  26. public function goods() {
  27. $params = $this->request->get();
  28. $category_id = $params['category_id'];
  29. $categories = CategoryModel::where('pid', $category_id)->where('status', 'normal')->select();
  30. // 获取这个分类下面的所有商品
  31. $goodsList = Goods::getGoodsList(array_merge($params, ['no_activity' => false]), false);
  32. foreach($categories as $key => $category) {
  33. $categoryIds = ',' . $category['id'] . ',';
  34. $currentCategoryGoods = [];
  35. foreach ($goodsList as $k => $goods) {
  36. $goodsCategoryIds = ',' . $goods['category_ids'] . ',';
  37. if (strpos($goodsCategoryIds, $categoryIds) !== false) {
  38. $currentCategoryGoods[] = $goods;
  39. }
  40. }
  41. $categories[$key]['goods'] = $currentCategoryGoods;
  42. }
  43. $this->success('商城分类商品', $categories);
  44. }
  45. }