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

IntegralGoods.php 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\IntegralGoodsLogic;
  4. use app\api\validate\IntegralGoodsValidate;
  5. use app\common\basics\Api;
  6. use app\common\server\JsonServer;
  7. /**
  8. * 积分商品
  9. * Class IntegralGoods
  10. * @package app\api\controller
  11. */
  12. class IntegralGoods extends Api
  13. {
  14. /**
  15. * @notes 积分商品列表
  16. * @return \think\response\Json
  17. * @throws \think\db\exception\DataNotFoundException
  18. * @throws \think\db\exception\DbException
  19. * @throws \think\db\exception\ModelNotFoundException
  20. * @author 段誉
  21. * @date 2022/2/28 12:10
  22. */
  23. public function lists()
  24. {
  25. $get = $this->request->get();
  26. $lists = IntegralGoodsLogic::lists($this->user_id, $get, $this->page_no, $this->page_size);
  27. return JsonServer::success('获取成功', $lists);
  28. }
  29. /**
  30. * @notes 商品详情
  31. * @return \think\response\Json
  32. * @author 段誉
  33. * @date 2022/2/28 15:32
  34. */
  35. public function detail()
  36. {
  37. (new IntegralGoodsValidate())->goCheck();
  38. $id = $this->request->get('id', '', 'trim');
  39. $goodsDetail = IntegralGoodsLogic::detail($id);
  40. return JsonServer::success('获取成功', $goodsDetail);
  41. }
  42. }