截流自动化的商城平台
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.

ShopCategoryLogic.php 502B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\shop\ShopCategory;
  5. class ShopCategoryLogic extends Logic
  6. {
  7. /**
  8. * 店铺主营类目
  9. */
  10. public static function getList()
  11. {
  12. $where = [
  13. 'del' => 0, // 未删除
  14. ];
  15. $list = ShopCategory::field('id,name,image')
  16. ->where($where)
  17. ->order(['sort'=>'asc','id'=>'desc'])
  18. ->select()
  19. ->toArray();
  20. return $list;
  21. }
  22. }