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

SeckillGoods.php 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. namespace app\shop\controller\seckill;
  3. use app\common\basics\ShopBase;
  4. use app\common\server\JsonServer;
  5. use app\shop\logic\seckill\SeckillGoodsLogic;
  6. use think\exception\ValidateException;
  7. use app\shop\validate\SeckillGoodsValidate;
  8. class SeckillGoods extends ShopBase
  9. {
  10. public function lists()
  11. {
  12. $statistics = SeckillGoodsLogic::statistics($this->shop_id);
  13. $seckill_time = SeckillGoodsLogic::getTimeAll();
  14. return view('', [
  15. 'statistics' => $statistics,
  16. 'seckill_time' => $seckill_time
  17. ]);
  18. }
  19. public function addGoods(){
  20. if($this->request->isAjax()){
  21. $post = $this->request->post();
  22. $post['item'] = form_to_linear($post);
  23. $post['shop_id'] = $this->shop_id;
  24. try{
  25. validate(SeckillGoodsValidate::class)->scene('add')->check($post);
  26. }catch(ValidateException $e) {
  27. return JsonServer::error($e->getError());
  28. }
  29. $result = SeckillGoodsLogic::addGoods($post);
  30. if($result === true) {
  31. return JsonServer::success('新增成功');
  32. }
  33. return JsonServer::error(SeckillGoodsLogic::getError());
  34. }
  35. $seckill_time = SeckillGoodsLogic::getTimeAll();
  36. return view('', [
  37. 'seckill' => $seckill_time
  38. ]);
  39. }
  40. public function goodsLists(){
  41. if($this->request->isAjax()){
  42. $get = $this->request->get();
  43. $get['shop_id'] = $this->shop_id;
  44. $list = SeckillGoodsLogic::goodsList($get);
  45. return JsonServer::success('', $list);
  46. }
  47. }
  48. public function editGoods(){
  49. if($this->request->isAjax()){
  50. $post = $this->request->post();
  51. $post['item'] = form_to_linear($post);
  52. $post['shop_id'] = $this->shop_id;
  53. try{
  54. validate(SeckillGoodsValidate::class)->scene('edit')->check($post);
  55. }catch(ValidateException $e) {
  56. return JsonServer::error($e->getError());
  57. }
  58. $result = SeckillGoodsLogic::editGoods($post);
  59. if($result === true) {
  60. return JsonServer::success('编辑成功');
  61. }
  62. return JsonServer::error(SeckillGoodsLogic::getError());
  63. }
  64. $id = $this->request->get('id');
  65. $seckill_id = $this->request->get('seckill_id');
  66. $start_date = $this->request->get('start_date');
  67. $end_date = $this->request->get('end_date');
  68. $detail = SeckillGoodsLogic::getSeckillGoods($id,$seckill_id,$start_date,$end_date);
  69. $seckill_time = SeckillGoodsLogic::getTimeAll();
  70. return view('', [
  71. 'seckill' => $seckill_time,
  72. 'detail' => $detail
  73. ]);
  74. }
  75. public function delGoods(){
  76. if($this->request->isAjax()){
  77. $id = $this->request->post('id');
  78. $seckill_id = $this->request->post('seckill_id');
  79. $start_date = $this->request->post('start_date');
  80. $end_date = $this->request->post('end_date');
  81. $shop_id = $this->shop_id;
  82. $result = SeckillGoodsLogic::delGoods($id,$seckill_id,$start_date,$end_date,$shop_id);
  83. if($result === true) {
  84. return JsonServer::success('删除成功');
  85. }
  86. return JsonServer::error(SeckillGoodsLogic::getError());
  87. }
  88. }
  89. /**
  90. * @notes 获取统计数据
  91. * @return \think\response\Json
  92. * @author Tab
  93. * @date 2021/7/29 10:00
  94. */
  95. public function totalCount()
  96. {
  97. if ($this->request->isAjax()) {
  98. return JsonServer::success('获取成功', SeckillGoodsLogic::statistics($this->shop_id));
  99. }
  100. }
  101. }