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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. namespace app\admin\controller\seckill;
  3. use app\common\basics\AdminBase;
  4. use app\common\server\JsonServer;
  5. use app\admin\logic\seckill\SeckillGoodsLogic;
  6. class SeckillGoods extends AdminBase
  7. {
  8. public function lists()
  9. {
  10. $statistics = SeckillGoodsLogic::statistics();
  11. $seckill_time = SeckillGoodsLogic::getTimeAll();
  12. return view('', [
  13. 'statistics' => $statistics,
  14. 'seckill_time' => $seckill_time
  15. ]);
  16. }
  17. public function goodsLists(){
  18. if($this->request->isAjax()){
  19. $get = $this->request->get();
  20. $list = SeckillGoodsLogic::goodsList($get);
  21. return JsonServer::success('', $list);
  22. }
  23. }
  24. public function editGoods(){
  25. $id = $this->request->get('id');
  26. $seckill_id = $this->request->get('seckill_id');
  27. $start_date = $this->request->get('start_date');
  28. $end_date = $this->request->get('end_date');
  29. $detail = SeckillGoodsLogic::getSeckillGoods($id,$seckill_id,$start_date,$end_date);
  30. $seckill_time = SeckillGoodsLogic::getTimeAll();
  31. return view('', [
  32. 'seckill' => $seckill_time,
  33. 'detail' => $detail
  34. ]);
  35. }
  36. /**
  37. * 违规重审
  38. */
  39. public function reAudit()
  40. {
  41. if ($this->request->isAjax()) {
  42. $post = $this->request->post();
  43. $result = SeckillGoodsLogic::reAudit($post);
  44. if ($result === true) {
  45. return JsonServer::success('操作成功');
  46. }
  47. return JsonServer::error(SeckillGoodsLogic::getError());
  48. }
  49. $get = $this->request->get();
  50. return view('re_audit', [
  51. 'get' => $get
  52. ]);
  53. }
  54. /**
  55. * 审核
  56. */
  57. public function audit()
  58. {
  59. if ($this->request->isAjax()) {
  60. $post = $this->request->post();
  61. $result = SeckillGoodsLogic::audit($post);
  62. if ($result) {
  63. return JsonServer::success('操作成功');
  64. }
  65. return JsonServer::error(SeckillGoodsLogic::getError());
  66. }
  67. $get = $this->request->get();
  68. return view('audit', [
  69. 'get' => $get
  70. ]);
  71. }
  72. }