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

GoodsColumn.php 567B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\basics\Api;
  4. use app\common\server\JsonServer;
  5. use app\api\logic\GoodsColumnLogic;
  6. class GoodsColumn extends Api
  7. {
  8. public $like_not_need_login = ['getGoodsColumnList'];
  9. /**
  10. * 获取商品栏目列表
  11. */
  12. public function getGoodsColumnList()
  13. {
  14. if($this->request->isGet()) {
  15. $list = GoodsColumnLogic::getGoodsColumnList();
  16. return JsonServer::success('获取栏目列表成功', $list);
  17. }
  18. return JsonServer::error('请求方式错误');
  19. }
  20. }