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

SeckillTime.php 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. namespace app\admin\controller\seckill;
  3. use app\admin\logic\seckill\SeckillTimeLogic;
  4. use app\common\basics\AdminBase;
  5. use app\common\server\JsonServer;
  6. use think\exception\ValidateException;
  7. use app\admin\validate\seckill\SeckillTimeValidate;
  8. class SeckillTime extends AdminBase
  9. {
  10. public function lists()
  11. {
  12. return view();
  13. }
  14. public function addTime()
  15. {
  16. if($this->request->isAjax()) {
  17. $post = $this->request->post();
  18. try{
  19. validate(SeckillTimeValidate::class)->check($post);
  20. }catch(ValidateException $e) {
  21. return JsonServer::error($e->getError());
  22. }
  23. $result = SeckillTimeLogic::addTime($post);
  24. if($result === true) {
  25. return JsonServer::success('新增成功');
  26. }
  27. return JsonServer::error(SeckillTimeLogic::getError());
  28. }
  29. return view();
  30. }
  31. public function timeLists(){
  32. if($this->request->isAjax()){
  33. $get= $this->request->get();
  34. $list = SeckillTimeLogic::timeList($get);
  35. return JsonServer::success('', $list);
  36. }
  37. }
  38. public function editTime(){
  39. if($this->request->isAjax()){
  40. $post = $this->request->post();
  41. try{
  42. validate(SeckillTimeValidate::class)->check($post);
  43. }catch(ValidateException $e) {
  44. return JsonServer::error($e->getError());
  45. }
  46. $result = SeckillTimeLogic::editTime($post);
  47. if($result === true) {
  48. return JsonServer::success('编辑成功');
  49. }
  50. return JsonServer::error(SeckillTimeLogic::getError());
  51. }
  52. $id = $this->request->get('id', '', 'intval');
  53. return view('', [
  54. 'detail' => SeckillTimeLogic::getTime($id)
  55. ]);
  56. }
  57. public function delTime(){
  58. if($this->request->isAjax()){
  59. $id = $this->request->post('id');
  60. $result = SeckillTimeLogic::delTime($id);
  61. if($result === true) {
  62. return JsonServer::success('删除成功');
  63. }
  64. return JsonServer::error(SeckillTimeLogic::getError());
  65. }
  66. }
  67. }