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

Coupon.php 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\basics\Api;
  4. use app\api\logic\CouponLogic;
  5. use app\common\server\JsonServer;
  6. use think\exception\ValidateException;
  7. use app\api\validate\CouponValidate;
  8. class Coupon extends Api
  9. {
  10. public $like_not_need_login = ['getCouponList'];
  11. /**
  12. * 领券中心
  13. */
  14. public function getCouponList()
  15. {
  16. $get = $this->request->get();
  17. $get['page_no'] = $this->page_no;
  18. $get['page_size'] = $this->page_size;
  19. $get['user_id'] = $this->user_id;
  20. $data = CouponLogic::getCouponList($get);
  21. return JsonServer::success('', $data);
  22. }
  23. /**
  24. * 领取优惠券
  25. */
  26. public function getCoupon()
  27. {
  28. $post = $this->request->post();
  29. $post['user_id'] = $this->user_id ? $this->user_id : '';
  30. try{
  31. validate(CouponValidate::class)->scene('getCoupon
  32. ')->check($post);
  33. }catch(ValidateException $e) {
  34. return JsonServer::error($e->getError());
  35. }
  36. $result = CouponLogic::getCoupon($post);
  37. if($result === true) {
  38. return JsonServer::success('已领取');
  39. }
  40. return JsonServer::error(CouponLogic::getError());
  41. }
  42. /**
  43. * 我的优惠券
  44. */
  45. public function myCouponList()
  46. {
  47. $get = $this->request->get();
  48. $get['page_no'] = $this->page_no;
  49. $get['page_size'] = $this->page_size;
  50. $get['user_id'] = $this->user_id;
  51. $data = CouponLogic::myCouponList($get);
  52. return JsonServer::success('', $data);
  53. }
  54. /**
  55. * 结算页优惠券
  56. */
  57. public function getBuyCouponList()
  58. {
  59. $post = $this->request->post();
  60. $post['page_no'] = $this->page_no;
  61. $post['page_size'] = $this->page_size;
  62. $post['user_id'] = $this->user_id;
  63. $data = CouponLogic::getBuyCouponList($post);
  64. return JsonServer::success('', $data);
  65. }
  66. }