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

ShopGoodsCategoryLogic.php 599B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\shop\ShopGoodsCategory;
  5. class ShopGoodsCategoryLogic extends Logic
  6. {
  7. /**
  8. * 店铺分类
  9. */
  10. public static function getShopGoodsCategory($shopId)
  11. {
  12. $where = [
  13. 'del' => 0,
  14. 'shop_id' => $shopId,
  15. 'is_show' => 1
  16. ];
  17. $order = [
  18. 'sort' => 'asc',
  19. 'id' => 'desc'
  20. ];
  21. $data = ShopGoodsCategory::field('id,name')
  22. ->where($where)->order($order)->select()->toArray();
  23. return $data;
  24. }
  25. }