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

Seckill.php 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\admin\controller;
  4. use app\admin\logic\SeckillLogic;
  5. use app\common\server\JsonServer;
  6. use think\Request;
  7. use think\Controller;
  8. use app\common\basics\AdminBase;
  9. class Seckill extends AdminBase
  10. {
  11. public function lists(){
  12. $seckill_time = SeckillLogic::getTimeAll();
  13. return view('', [
  14. 'seckill' => $seckill_time
  15. ]);
  16. }
  17. /**
  18. * note 秒杀商品
  19. * create_time 2020/11/13 16:01
  20. */
  21. public function goodsLists(){
  22. if($this->request->isAjax()){
  23. $get = $this->request->get();
  24. $list = SeckillLogic::goodsList($get);
  25. return JsonServer::success('',$list,0);
  26. }
  27. }
  28. /**
  29. * note 秒杀时间
  30. * create_time 2020/11/13 16:01
  31. */
  32. public function timeLists(){
  33. if($this->request->isAjax()){
  34. $get= $this->request->get();
  35. $list = SeckillLogic::timeList($get);
  36. return JsonServer::success('',$list,0);
  37. }
  38. }
  39. /**
  40. * note 添加秒杀时间段
  41. * create_time 2020/11/13 16:01
  42. */
  43. public function addTime(){
  44. if($this->request->isAjax()){
  45. $post = $this->request->post();
  46. $result = $this->validate($post, 'app\admin\validate\SeckillTime');
  47. if($result === true){
  48. SeckillLogic::addTime($post);
  49. $this->_success('新增成功','');
  50. }
  51. $this->_error($result,'');
  52. }
  53. return $this->fetch();
  54. }
  55. /**
  56. * note 编辑秒杀时间段
  57. * create_time 2020/11/13 16:02
  58. */
  59. public function editTime($id){
  60. if($this->request->isAjax()){
  61. $post = $this->request->post();
  62. $result = $this->validate($post, 'app\admin\validate\SeckillTime');
  63. if($result === true){
  64. SeckillLogic::editTime($post);
  65. $this->_success('编辑成功','');
  66. }
  67. $this->_error($result,'');
  68. }
  69. $this->assign('detail',SeckillLogic::getTime($id));
  70. return $this->fetch();
  71. }
  72. /**
  73. * note 删除秒杀时间段
  74. * create_time 2020/11/13 16:02
  75. */
  76. public function delTime(){
  77. if($this->request->isAjax()){
  78. $id = $this->request->post('id');
  79. $result = SeckillLogic::delTime($id);
  80. if($result == true){
  81. $this->_success('删除成功','');
  82. }
  83. return $this->_error('删除失败','');
  84. }
  85. }
  86. /**
  87. * note 添加秒杀商品
  88. * create_time 2020/11/13 16:02
  89. */
  90. public function addGoods(){
  91. if($this->request->isAjax()){
  92. $post = $this->request->post();
  93. $post['item'] = form_to_linear($post);
  94. $result = $this->validate($post,'app\admin\validate\SeckillGoods.add');
  95. if($result === true){
  96. $result = SeckillLogic::addGoods($post);
  97. if($result){
  98. $this->_success('新增成功','');
  99. }
  100. $result = '新增失败';
  101. }
  102. $this->_error($result);
  103. }
  104. $seckill_time = SeckillLogic::getTimeAll();
  105. foreach ($seckill_time as $k=>$v){
  106. // $seckill_time[$k]["time"]
  107. }
  108. return view('', [
  109. 'seckill' =>$seckill_time
  110. ]);
  111. // $this->assign('seckill',$seckill_time);
  112. // return $this->fetch();
  113. }
  114. /**
  115. * note 编辑秒杀商品
  116. * create_time 2020/11/13 16:02
  117. */
  118. public function editGoods(){
  119. if($this->request->isAjax()){
  120. $post = $this->request->post();
  121. $post['item'] = form_to_linear($post);
  122. $result = $this->validate($post,'app\admin\validate\SeckillGoods.edit');
  123. if($result === true){
  124. $result = SeckillLogic::editGoods($post);
  125. if($result){
  126. $this->_success('编辑成功','');
  127. }
  128. $result = '编辑失败';
  129. }
  130. $this->_error($result);
  131. }
  132. $id = $this->request->get('id');
  133. $seckill_id = $this->request->get('seckill_id');
  134. $detail = SeckillLogic::getSeckillGoods($id,$seckill_id);
  135. $seckill_time = SeckillLogic::getTimeAll();
  136. $this->assign('seckill',$seckill_time);
  137. $this->assign('detail',$detail);
  138. return $this->fetch();
  139. }
  140. /**
  141. * note 删除秒杀商品
  142. * create_time 2020/11/13 16:05
  143. */
  144. public function delGoods(){
  145. if($this->request->isAjax()){
  146. $id = $this->request->post('id');
  147. $seckill_id = $this->request->post('seckill_id');
  148. $result = SeckillLogic::delGoods($id,$seckill_id);
  149. if($result == true){
  150. $this->_success('删除成功','');
  151. }
  152. return $this->_error('删除失败','');
  153. }
  154. }
  155. }