截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GoodsCategoryLogic.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\goods\GoodsCategory;
  5. use app\common\server\UrlServer;
  6. class GoodsCategoryLogic extends Logic
  7. {
  8. /**
  9. * 获取平台一级分类
  10. */
  11. public static function getLevelOneList()
  12. {
  13. $where = [
  14. 'del' => 0, // 未删除
  15. 'is_show' => 1, // 显示
  16. 'pid' => 0
  17. ];
  18. //
  19. $list = GoodsCategory::field('id,name,image,bg_image')
  20. ->withAttr('bg_image', function ($value, $data) {
  21. if (!empty($value)) {
  22. return UrlServer::getFileUrl($value);
  23. }
  24. return $value;
  25. })
  26. ->where($where)
  27. ->order('sort', 'asc')
  28. ->select()
  29. ->toArray();
  30. return $list;
  31. }
  32. /**
  33. * 获取一级分类下的后代分类
  34. */
  35. public static function getListByLevelOne($id)
  36. {
  37. $where = [
  38. 'del' => 0, // 未删除
  39. 'is_show' => 1, // 显示
  40. 'pid' => $id
  41. ];
  42. $list = GoodsCategory::field('id,name,image')
  43. ->where($where)
  44. ->order('sort', 'asc')
  45. ->select()
  46. ->toArray();
  47. foreach($list as &$item) {
  48. $where = [
  49. 'del' => 0, // 未删除
  50. 'is_show' => 1, // 显示
  51. 'pid' => $item['id']
  52. ];
  53. $item['children'] = GoodsCategory::field('id,name,image')
  54. ->where($where)
  55. ->order('sort', 'asc')
  56. ->select()
  57. ->toArray();
  58. }
  59. return $list;
  60. }
  61. }