截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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