截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Bargain.php 6.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. <?php
  2. namespace app\shop\controller\bargain;
  3. use app\common\basics\ShopBase;
  4. use app\common\server\ConfigServer;
  5. use app\common\server\JsonServer;
  6. use app\shop\logic\bargain\BargainLogic;
  7. use think\facade\View;
  8. use app\shop\validate\BargainValidate;
  9. /**
  10. * Class Bargain
  11. * @package app\shop\controller\bargain
  12. */
  13. class Bargain extends ShopBase
  14. {
  15. /**
  16. * @notes 砍价活动 商品列表
  17. * @return string|\think\response\Json
  18. * @author suny
  19. * @date 2021/7/14 10:13 上午
  20. */
  21. public function activity()
  22. {
  23. if ($this->request->isAjax()) {
  24. $get = $this->request->get();
  25. $get['shop_id'] = $this->shop_id;
  26. $lists = BargainLogic::activity($get);
  27. return JsonServer::success('获取成功', $lists);
  28. }
  29. $num = BargainLogic::getNum($this->shop_id);
  30. View::assign('num', $num);
  31. return View::fetch('bargain/activity');
  32. }
  33. /**
  34. * @notes 新增砍价活动 商品
  35. * @return string|\think\response\Json
  36. * @author suny
  37. * @date 2021/7/14 10:13 上午
  38. */
  39. public function add()
  40. {
  41. if ($this->request->isAjax()) {
  42. $post = $this->request->post();
  43. $post['shop_id'] = $this->shop_id;
  44. (new BargainValidate())->goCheck('add', $post);
  45. $result = BargainLogic::add($post);
  46. if ($result) {
  47. return JsonServer::success('新增成功');
  48. } else {
  49. $error = BargainLogic::getError() ?? '新增失败';
  50. return JsonServer::error($error);
  51. }
  52. }
  53. return View::fetch('bargain/add');
  54. }
  55. /**
  56. * @notes 编辑活动 商品
  57. * @return string|\think\response\Json
  58. * @author suny
  59. * @date 2021/7/14 10:14 上午
  60. */
  61. public function edit()
  62. {
  63. if ($this->request->isAjax()) {
  64. $post = $this->request->post();
  65. (new BargainValidate())->goCheck('edit', $post);
  66. if (BargainLogic::edit($post)) {
  67. return JsonServer::success('编辑成功');
  68. } else {
  69. $error = BargainLogic::getError() ?? '编辑失败';
  70. return JsonServer::error($error);
  71. }
  72. }
  73. $id = $this->request->get('id');
  74. $detail = BargainLogic::getDetail($id);
  75. View::assign('detail', $detail);
  76. return View::fetch('bargain/edit');
  77. }
  78. /**
  79. * @notes 停止活动
  80. * @return \think\response\Json
  81. * @author suny
  82. * @date 2021/7/14 10:14 上午
  83. */
  84. public function stop()
  85. {
  86. if ($this->request->isAjax()) {
  87. $post = $this->request->post();
  88. if (BargainLogic::stop($post)) {
  89. return JsonServer::success('更新成功');
  90. } else {
  91. $error = BargainLogic::getError() ?? '更新失败';
  92. return JsonServer::error($error);
  93. }
  94. }
  95. }
  96. /**
  97. * @notes 开启活动
  98. * @return \think\response\Json
  99. * @author suny
  100. * @date 2021/7/14 10:14 上午
  101. */
  102. public function start()
  103. {
  104. if ($this->request->isAjax()) {
  105. $post = $this->request->post();
  106. if (BargainLogic::start($post)) {
  107. return JsonServer::success('更新成功');
  108. } else {
  109. $error = BargainLogic::getError() ?? '更新失败';
  110. return JsonServer::error($error);
  111. }
  112. }
  113. }
  114. /**
  115. * @notes 砍价订单列表
  116. * @return string|\think\response\Json
  117. * @author suny
  118. * @date 2021/7/14 10:14 上午
  119. */
  120. public function launch()
  121. {
  122. if ($this->request->isAjax()) {
  123. $get = $this->request->get();
  124. $get['shop_id'] = $this->shop_id;
  125. $lists = BargainLogic::getLaunch($get);
  126. return JsonServer::success('OK', $lists);
  127. }
  128. $bargain_id = $this->request->get('bargain_id', 0);
  129. View::assign('bargain_id', $bargain_id);
  130. return View::fetch('bargain/launch');
  131. }
  132. /**
  133. * @notes 砍价订单详情
  134. * @return string
  135. * @author suny
  136. * @date 2021/7/14 10:14 上午
  137. */
  138. public function detail()
  139. {
  140. $id = $this->request->get('id');
  141. $detail = BargainLogic::getLaunchDetail($id);
  142. View::assign('detail', $detail);
  143. return View::fetch('bargain/detail');
  144. }
  145. /**
  146. * @notes 砍价订单记录
  147. * @return \think\response\Json
  148. * @author suny
  149. * @date 2021/7/14 10:14 上午
  150. */
  151. public function knifeOrderRecord()
  152. {
  153. $launch_id = $this->request->get('launch_id');
  154. $get = $this->request->get();
  155. $lists = BargainLogic::getKnifeOrderRecord($launch_id, $get);
  156. return JsonServer::success('获取成功', $lists);
  157. }
  158. /**
  159. * @notes 砍价助力记录
  160. * @return \think\response\Json
  161. * @author suny
  162. * @date 2021/7/14 10:14 上午
  163. */
  164. public function knifeRecord()
  165. {
  166. $launch_id = $this->request->get('launch_id');
  167. $get = $this->request->get();
  168. $lists = BargainLogic::getKnifeRecord($launch_id, $get);
  169. return JsonServer::success('获取成功', $lists);
  170. }
  171. /**
  172. * @notes 砍价活动详情
  173. * @return \think\response\View
  174. * @author suny
  175. * @date 2021/7/14 10:14 上午
  176. */
  177. public function bargain_detail()
  178. {
  179. $get = $this->request->get();
  180. $detail = BargainLogic::detail($get);
  181. View::assign('detail', $detail);
  182. return View('bargain/bargain_detail');
  183. }
  184. /**
  185. * @notes 删除
  186. * @return \think\response\Json
  187. * @author suny
  188. * @date 2021/7/14 10:14 上午
  189. */
  190. public function del()
  191. {
  192. if ($this->request->isAjax()) {
  193. $id = $this->request->post('id');
  194. if (BargainLogic::softDelete($id)) {
  195. return JsonServer::success('删除成功');
  196. } else {
  197. $error = BargainLogic::getError() ?? '删除失败';
  198. return JsonServer::error($error);
  199. }
  200. }
  201. }
  202. /**
  203. * @notes 结束砍价
  204. * @return \think\response\Json
  205. * @author suny
  206. * @date 2021/7/14 10:14 上午
  207. */
  208. public function close()
  209. {
  210. if ($this->request->isAjax()) {
  211. $id = $this->request->post('id');
  212. if (BargainLogic::close($id)) {
  213. return JsonServer::success('结束砍价成功');
  214. } else {
  215. $error = BargainLogic::getError() ?? '结束砍价失败';
  216. return JsonServer::error($error);
  217. }
  218. }
  219. }
  220. }