截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

Bargain.php 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\basics\Api;
  4. use app\api\logic\BargainLogic;
  5. use app\common\server\JsonServer;
  6. use app\api\validate\BargainValidate;
  7. /**
  8. * Class Bargain
  9. * @package app\api\controller
  10. */
  11. class Bargain extends Api
  12. {
  13. public $like_not_need_login = ['bargainNumber', 'lists', 'detail', 'closeBargain', 'test'];
  14. /**
  15. * @notes 获取砍价成功人数
  16. * @return \think\response\Json
  17. * @author suny
  18. * @date 2021/7/13 6:09 下午
  19. */
  20. public function bargainNumber()
  21. {
  22. $number = BargainLogic::bargainNumber();
  23. $data = [
  24. 'code' => 1,
  25. 'show' => 0,
  26. 'msg' => '获取成功',
  27. 'data' => $number
  28. ];
  29. return json($data);
  30. }
  31. /**
  32. * @notes 砍价列表
  33. * @return \think\response\Json
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @throws \think\exception\DbException
  37. * @author suny
  38. * @date 2021/7/13 6:10 下午
  39. */
  40. public function lists()
  41. {
  42. $list = BargainLogic::lists($this->page_no, $this->page_size);
  43. return JsonServer::success('获取成功', $list);
  44. }
  45. /**
  46. * @notes 砍价活动详情
  47. * @return \think\response\Json
  48. * @throws \think\db\exception\DataNotFoundException
  49. * @throws \think\db\exception\DbException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. * @throws \think\exception\DbException
  52. * @author suny
  53. * @date 2021/7/13 6:10 下午
  54. */
  55. public function detail()
  56. {
  57. $get = $this->request->get();
  58. (new BargainValidate())->goCheck('detail', $get);
  59. $detail = BargainLogic::detail($get['bargain_id']);
  60. $data = [
  61. 'code' => 1,
  62. 'show' => 0,
  63. 'msg' => '获取成功',
  64. 'data' => $detail
  65. ];
  66. return json($data);
  67. }
  68. /**
  69. * @notes 发起砍价
  70. * @return \think\response\Json
  71. * @throws \think\db\exception\DataNotFoundException
  72. * @throws \think\db\exception\ModelNotFoundException
  73. * @throws \think\exception\DbException
  74. * @throws \think\exception\PDOException
  75. * @author suny
  76. * @date 2021/7/13 6:10 下午
  77. */
  78. public function sponsor()
  79. {
  80. $post_data = $this->request->post();
  81. (new BargainValidate())->goCheck('sponsor', $post_data);
  82. $data = BargainLogic::sponsor($post_data, $this->user_id);
  83. if (false === $data) {
  84. return JsonServer::error(BargainLogic::getError());
  85. } else {
  86. return JsonServer::success('发起砍价成功', $data);
  87. }
  88. }
  89. /**
  90. * @notes 砍价助力
  91. * @return \think\response\Json
  92. * @author suny
  93. * @date 2021/7/13 6:10 下午
  94. */
  95. public function knife()
  96. {
  97. $id = $this->request->post('id');
  98. (new BargainValidate())->goCheck('knife', ['id' => $id, 'user_id' => $this->user_id]);
  99. $data = BargainLogic::knife($id, $this->user_id);
  100. if (false === $data) {
  101. return JsonServer::error(BargainLogic::getError());
  102. } else {
  103. return JsonServer::success('助力成功', $data);
  104. }
  105. }
  106. /**
  107. * @notes 砍价订单列表
  108. * @return \think\response\Json
  109. * @author suny
  110. * @date 2021/7/13 6:10 下午
  111. */
  112. public function orderList()
  113. {
  114. $type = $this->request->get('type', '-1');
  115. $list = BargainLogic::orderList($type, $this->user_id, $this->page_no, $this->page_size);
  116. return JsonServer::success('获取成功', $list);
  117. }
  118. /**
  119. * @notes 砍价详情
  120. * @return \think\response\Json
  121. * @author suny
  122. * @date 2021/7/13 6:10 下午
  123. */
  124. public function bargainDetail()
  125. {
  126. $id = $this->request->get('id');
  127. (new BargainValidate())->goCheck('bargainDetail', ['id' => $id, 'user_id' => $this->user_id]);
  128. $detail = BargainLogic::bargainDetail($id, $this->user_id);
  129. return JsonServer::success('获取成功', $detail);
  130. }
  131. /**
  132. * @notes 关闭砍价订单
  133. * @return \think\response\Json
  134. * @author suny
  135. * @date 2021/7/13 6:10 下午
  136. */
  137. public function closeBargain()
  138. {
  139. $id = $this->request->post('id');
  140. if ($id) {
  141. BargainLogic::closeBargain($id);
  142. }
  143. return JsonServer::success('关闭成功');
  144. }
  145. }