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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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\FoundLogic;
  6. use think\facade\View;
  7. /**
  8. * 拼团记录管理
  9. * Class Record
  10. * @package app\shop\controller\team
  11. */
  12. class Found extends ShopBase
  13. {
  14. /**
  15. * @Notes: 拼团记录
  16. * @Author: 张无忌
  17. */
  18. public function lists()
  19. {
  20. if ($this->request->isAjax()) {
  21. $get = $this->request->get();
  22. $lists = FoundLogic::lists($get, $this->shop_id);
  23. return JsonServer::success('获取成功', $lists);
  24. }
  25. $team_activity_id = $this->request->get('team_activity_id', 0);
  26. View::assign('team_activity_id', $team_activity_id);
  27. View::assign('statistics', FoundLogic::statistics($this->shop_id, $team_activity_id));
  28. return view();
  29. }
  30. /**
  31. * @Notes: 数据统计
  32. * @Author: 张无忌
  33. */
  34. public function statistics()
  35. {
  36. if ($this->request->isAjax()) {
  37. $team_activity_id = $this->request->get('team_activity_id', 0);
  38. $detail = FoundLogic::statistics($this->shop_id, $team_activity_id);
  39. return JsonServer::success('获取成功', $detail);
  40. }
  41. return JsonServer::error('异常');
  42. }
  43. /**
  44. * @Notes: 拼团记录详细
  45. * @Author: 张无忌
  46. */
  47. public function detail()
  48. {
  49. $id = $this->request->get('id');
  50. View::assign('detail', FoundLogic::detail($id));
  51. return view();
  52. }
  53. /**
  54. * @Notes: 参团列表
  55. * @Author: 张无忌
  56. */
  57. public function join()
  58. {
  59. if ($this->request->isAjax()) {
  60. $get = $this->request->get();
  61. $lists = FoundLogic::join($get);
  62. return JsonServer::success('获取成功', $lists);
  63. }
  64. return JsonServer::error('请求异常');
  65. }
  66. /**
  67. * @Notes: 结束拼团
  68. * @Author: 张无忌
  69. */
  70. public function end()
  71. {
  72. if ($this->request->isAjax()) {
  73. $team_id = $this->request->post('team_id');
  74. $res = FoundLogic::end($team_id);
  75. if ($res === false) {
  76. $message = FoundLogic::getError() ?: '结束失败';
  77. return JsonServer::error($message);
  78. }
  79. return JsonServer::success('结束成功');
  80. }
  81. return JsonServer::error('请求异常');
  82. }
  83. }