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

Activity.php 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. namespace app\shop\controller\team;
  3. use app\common\basics\ShopBase;
  4. use app\common\server\JsonServer;
  5. use app\shop\logic\team\ActivityLogic;
  6. use app\shop\validate\TeamValidate;
  7. use think\facade\View;
  8. class Activity extends ShopBase
  9. {
  10. /**
  11. * @Notes: 拼团活动列表
  12. * @Author: 张无忌
  13. */
  14. public function lists()
  15. {
  16. if ($this->request->isAjax()) {
  17. $get = $this->request->get();
  18. $lists = ActivityLogic::lists($get, $this->shop_id);
  19. return JsonServer::success('获取成功', $lists);
  20. }
  21. View::assign('statistics', ActivityLogic::statistics($this->shop_id));
  22. return view();
  23. }
  24. /**
  25. * @Notes: 选择拼团商品
  26. * @Author: 张无忌
  27. */
  28. public function select()
  29. {
  30. if ($this->request->isAjax()) {
  31. $get = $this->request->get();
  32. $lists = ActivityLogic::select($get, $this->shop_id);
  33. return JsonServer::success('获取成功', $lists);
  34. }
  35. return view();
  36. }
  37. /**
  38. * @Notes: 数据统计
  39. * @Author: 张无忌
  40. */
  41. public function statistics()
  42. {
  43. if ($this->request->isAjax()) {
  44. $detail = ActivityLogic::statistics($this->shop_id);
  45. return JsonServer::success('获取成功', $detail);
  46. }
  47. return JsonServer::error('异常');
  48. }
  49. /**
  50. * @Notes: 拼团活动详细
  51. * @Author: 张无忌
  52. */
  53. public function detail()
  54. {
  55. $id = $this->request->get('id');
  56. View::assign('detail', ActivityLogic::detail($id));
  57. return view();
  58. }
  59. /**
  60. * @Notes: 新增拼团活动
  61. * @Author: 张无忌
  62. */
  63. public function add()
  64. {
  65. if ($this->request->isAjax()) {
  66. (new TeamValidate())->goCheck('add');
  67. $post = $this->request->post();
  68. $lists = ActivityLogic::add($post, $this->shop_id);
  69. if ($lists === false) {
  70. $message = ActivityLogic::getError() ?: '新增失败';
  71. return JsonServer::error($message);
  72. }
  73. return JsonServer::success('新增成功');
  74. }
  75. return view();
  76. }
  77. /**
  78. * @Notes: 编辑拼团活动
  79. * @Author: 张无忌
  80. */
  81. public function edit()
  82. {
  83. if ($this->request->isAjax()) {
  84. (new TeamValidate())->goCheck('edit');
  85. $post = $this->request->post();
  86. $lists = ActivityLogic::edit($post, $this->shop_id);
  87. if ($lists === false) {
  88. $message = ActivityLogic::getError() ?: '编辑失败';
  89. return JsonServer::error($message);
  90. }
  91. return JsonServer::success('编辑成功');
  92. }
  93. $id = $this->request->get('id');
  94. View::assign('detail', ActivityLogic::detail($id));
  95. return view();
  96. }
  97. /**
  98. * @Notes: 删除拼团活动
  99. * @Author: 张无忌
  100. */
  101. public function del()
  102. {
  103. if ($this->request->isAjax()) {
  104. (new TeamValidate())->goCheck('id');
  105. $id = $this->request->post('id');
  106. $lists = ActivityLogic::del($id);
  107. if ($lists === false) {
  108. $message = ActivityLogic::getError() ?: '删除失败';
  109. return JsonServer::error($message);
  110. }
  111. return JsonServer::success('删除成功');
  112. }
  113. return JsonServer::error('请求异常');
  114. }
  115. /**
  116. * @Notes: 停止活动
  117. * @Author: 张无忌
  118. */
  119. public function stop()
  120. {
  121. if ($this->request->isAjax()) {
  122. (new TeamValidate())->goCheck('id');
  123. $id = $this->request->post('id');
  124. $lists = ActivityLogic::stop($id);
  125. if ($lists === false) {
  126. $message = ActivityLogic::getError() ?: '停止失败';
  127. return JsonServer::error($message);
  128. }
  129. return JsonServer::success('停止成功');
  130. }
  131. return JsonServer::error('请求异常');
  132. }
  133. /**
  134. * @Notes: 开启拼团活动
  135. * @Author: 张无忌
  136. */
  137. public function open()
  138. {
  139. if ($this->request->isAjax()) {
  140. $id = $this->request->post('id');
  141. $lists = ActivityLogic::open($id);
  142. if ($lists === false) {
  143. $message = ActivityLogic::getError() ?: '开启失败';
  144. return JsonServer::error($message);
  145. }
  146. return JsonServer::success('开启成功');
  147. }
  148. return JsonServer::error('请求异常');
  149. }
  150. }