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

GoodsCategory.php 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\basics\Api;
  4. use app\common\server\JsonServer;
  5. use app\api\logic\GoodsCategoryLogic;
  6. use think\facade\Validate;
  7. class GoodsCategory extends Api
  8. {
  9. public $like_not_need_login = ['getLevelOneList', 'getListByLevelOne'];
  10. /**
  11. * 获取一级分类列表
  12. */
  13. public function getLevelOneList()
  14. {
  15. if($this->request->isGet()) {
  16. $list = GoodsCategoryLogic::getLevelOneList();
  17. return JsonServer::success('获取成功', $list);
  18. }
  19. return JsonServer::error('请求方式错误');
  20. }
  21. /**
  22. * 获取一级分类下的后代分类
  23. */
  24. public function getListByLevelOne()
  25. {
  26. if($this->request->isGet()) {
  27. $id = $this->request->get('id', '', 'trim');
  28. $validate = Validate::rule('id', 'require|integer|gt:0');
  29. if(!$validate->check(['id'=>$id])) {
  30. return JsonServer::error($validate->getError());
  31. }
  32. $list = GoodsCategoryLogic::getListByLevelOne($id);
  33. return JsonServer::success('获取成功', $list);
  34. }
  35. return JsonServer::error('请求方式错误');
  36. }
  37. }