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

Bargain.php 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\controller\bargain;
  20. use app\admin\logic\bargain\BargainLogic;
  21. use app\common\server\ConfigServer;
  22. use app\common\server\JsonServer;
  23. use app\common\basics\AdminBase;
  24. use app\admin\validate\BargainValidate;
  25. use think\facade\View;
  26. /**
  27. * Class Bargain
  28. * @package app\admin\controller\bargain
  29. */
  30. class Bargain extends AdminBase
  31. {
  32. /**
  33. * @notes 砍价活动商品列表
  34. * @return string|\think\response\Json
  35. * @author suny
  36. * @date 2021/7/13 6:59 下午
  37. */
  38. public function activity()
  39. {
  40. if ($this->request->isAjax()) {
  41. $get = $this->request->get();
  42. $lists = BargainLogic::activity($get);
  43. return JsonServer::success('获取成功', $lists);
  44. }
  45. $num = BargainLogic::getNum();
  46. View::assign('num', $num);
  47. return View::fetch('bargain/activity');
  48. }
  49. /**
  50. * @notes 砍价活动商品审核
  51. * @return \think\response\Json|\think\response\View
  52. * @author suny
  53. * @date 2021/7/13 6:59 下午
  54. */
  55. public function audit()
  56. {
  57. if ($this->request->isAjax()) {
  58. $post = $this->request->post();
  59. (new BargainValidate())->goCheck('audit', $post);
  60. $result = BargainLogic::audit($post);
  61. if ($result) {
  62. return JsonServer::success('操作成功');
  63. }
  64. return JsonServer::error('操作失败');
  65. }
  66. $id = $this->request->get('id');
  67. View::assign('id', $id);
  68. return View('bargain/audit');
  69. }
  70. /**
  71. * @notes 违规操作
  72. * @return \think\response\Json|\think\response\View
  73. * @author suny
  74. * @date 2021/7/13 6:59 下午
  75. */
  76. public function violation()
  77. {
  78. if ($this->request->isAjax()) {
  79. $post = $this->request->post();
  80. $id = $post['id'];
  81. (new BargainValidate())->goCheck('violation', $post);
  82. $result = BargainLogic::violation($post);
  83. if ($result) {
  84. return JsonServer::success('操作成功');
  85. }
  86. return JsonServer::error('操作失败');
  87. }
  88. $id = $this->request->get('id');
  89. View::assign('id', $id);
  90. return View('bargain/violation');
  91. }
  92. /**
  93. * @notes 砍价商品详情
  94. * @return \think\response\View
  95. * @author suny
  96. * @date 2021/7/13 6:59 下午
  97. */
  98. public function bargain_detail()
  99. {
  100. $get = $this->request->get();
  101. $detail = BargainLogic::detail($get);
  102. View::assign('detail', $detail);
  103. return View('bargain/bargain_detail');
  104. }
  105. /**
  106. * @notes 切换状态
  107. * @return \think\response\Json
  108. * @author suny
  109. * @date 2021/7/13 7:00 下午
  110. */
  111. public function switchStatus()
  112. {
  113. if ($this->request->isAjax()) {
  114. $post = $this->request->post();
  115. if (BargainLogic::switchStatus($post)) {
  116. return JsonServer::success('更新成功');
  117. } else {
  118. $error = BargainLogic::getError() ?? '更新失败';
  119. return JsonServer::error($error);
  120. }
  121. }
  122. }
  123. /**
  124. * @notes 砍价记录列表
  125. * @return string|\think\response\Json
  126. * @author suny
  127. * @date 2021/7/13 7:00 下午
  128. */
  129. public function launch()
  130. {
  131. if ($this->request->isAjax()) {
  132. $get = $this->request->get();
  133. $lists = BargainLogic::getLaunch($get);
  134. if (false === $lists) {
  135. return JsonServer::error('结束时间必须大于开始时间!');
  136. } else {
  137. return JsonServer::success('OK', $lists);
  138. }
  139. }
  140. $bargain_id = $this->request->get('bargain_id', 0);
  141. View::assign('bargain_id', $bargain_id);
  142. return View::fetch('bargain/launch');
  143. }
  144. /**
  145. * @notes 砍价记录详情
  146. * @return string
  147. * @author suny
  148. * @date 2021/7/13 7:00 下午
  149. */
  150. public function detail()
  151. {
  152. $id = $this->request->get('id');
  153. $detail = BargainLogic::getLaunchDetail($id);
  154. View::assign('detail', $detail);
  155. return View::fetch('bargain/detail');
  156. }
  157. /**
  158. * @notes 砍价订单记录
  159. * @return \think\response\Json
  160. * @author suny
  161. * @date 2021/7/13 7:00 下午
  162. */
  163. public function knifeOrderRecord()
  164. {
  165. $launch_id = $this->request->get('launch_id');
  166. $get = $this->request->get();
  167. $lists = BargainLogic::getKnifeOrderRecord($launch_id, $get);
  168. return JsonServer::success('获取成功', $lists);
  169. }
  170. /**
  171. * @notes 砍价助力记录
  172. * @return \think\response\Json
  173. * @author suny
  174. * @date 2021/7/13 7:00 下午
  175. */
  176. public function knifeRecord()
  177. {
  178. $launch_id = $this->request->get('launch_id');
  179. $get = $this->request->get();
  180. $lists = BargainLogic::getKnifeRecord($launch_id, $get);
  181. return JsonServer::success('获取成功', $lists);
  182. }
  183. /**
  184. * @notes 砍价设置
  185. * @return string|\think\response\Json
  186. * @author suny
  187. * @date 2021/7/13 7:00 下午
  188. */
  189. public function set()
  190. {
  191. if ($this->request->isAjax()) {
  192. $payment_limit_time = $this->request->post('payment_limit_time', 0);
  193. try {
  194. ConfigServer::set('bargain', 'payment_limit_time', $payment_limit_time);
  195. } catch (\Exception $e) {
  196. return JsonServer::error('设置失败');
  197. }
  198. return JsonServer::success('设置成功');
  199. }
  200. $payment_limit_time = ConfigServer::get('bargain', 'payment_limit_time', 0);
  201. View::assign('payment_limit_time', $payment_limit_time);
  202. return View::fetch('bargain/set');
  203. }
  204. }