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

Member.php 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?php
  2. namespace app\admin\controller\distribution;
  3. use app\common\basics\AdminBase;
  4. use app\common\model\distribution\DistributionMemberApply;
  5. use app\common\server\JsonServer;
  6. use app\admin\logic\distribution\MemberLogic;
  7. use app\admin\validate\distribution\MemberValidate;
  8. use think\exception\ValidateException;
  9. class Member extends AdminBase
  10. {
  11. public function index()
  12. {
  13. if ($this->request->isAjax()) {
  14. $get = $this->request->get();
  15. $type = $get['type'] ?? 'member';
  16. if ($type == 'member') {
  17. return JsonServer::success('获取成功', MemberLogic::memberLists($get));
  18. }
  19. return JsonServer::success('获取成功', MemberLogic::auditLists($get));
  20. }
  21. return view('index', ['status' => DistributionMemberApply::getApplyStatus(true)]);
  22. }
  23. public function addMember()
  24. {
  25. if ($this->request->isAjax()) {
  26. $post = $this->request->post();
  27. try{
  28. validate(MemberValidate::class)->scene('add')->check($post);
  29. }catch(ValidateException $e) {
  30. return JsonServer::error($e->getError());
  31. }
  32. $result = MemberLogic::addMember($post);
  33. if($result === true) {
  34. return JsonServer::success('添加成功');
  35. }
  36. return JsonServer::error($result);
  37. }
  38. return view();
  39. }
  40. public function info()
  41. {
  42. $get = $this->request->get();
  43. $info = MemberLogic::getMemberInfo($get);
  44. return view('info', ['detail'=>$info]);
  45. }
  46. public function fans()
  47. {
  48. if ($this->request->isAjax()) {
  49. $get = $this->request->get();
  50. return JsonServer::success('', MemberLogic::getFansLists($get));
  51. }
  52. $user_id = $this->request->get('id');
  53. return view('', ['user_id'=>$user_id]);
  54. }
  55. public function earningsDetail()
  56. {
  57. if ($this->request->isAjax()) {
  58. $get = $this->request->get();
  59. return JsonServer::success('', MemberLogic::getEarningsDetail($get));
  60. }
  61. $user_id = $this->request->get('id');
  62. return view('', ['user_id'=>$user_id]);
  63. }
  64. public function updateLeader()
  65. {
  66. if ($this->request->isAjax()) {
  67. $post = $this->request->post();
  68. try{
  69. validate(MemberValidate::class)->scene('updateLeader')->check($post);
  70. }catch(ValidateException $e) {
  71. return JsonServer::error($e->getError());
  72. }
  73. $result = MemberLogic::updateRelation($post);
  74. if ($result === true){
  75. return JsonServer::success('操作成功');
  76. }
  77. return JsonServer::error($result);
  78. }
  79. $user_id = $this->request->get('id');
  80. return view('',[
  81. 'first_leader' => MemberLogic::getLeaderInfo($user_id),
  82. 'user_id' => $user_id
  83. ]);
  84. }
  85. public function freeze()
  86. {
  87. if ($this->request->isAjax()) {
  88. $post = $this->request->post();
  89. try{
  90. validate(MemberValidate::class)->scene('freeze')->check($post);
  91. }catch(ValidateException $e) {
  92. return JsonServer::error($e->getError());
  93. }
  94. $result = MemberLogic::freeze($post);
  95. if($result === true) {
  96. return JsonServer::success('操作成功');
  97. }
  98. return JsonServer::error('操作失败');
  99. }
  100. }
  101. // 删除分销资格
  102. public function del()
  103. {
  104. if($this->request->isPost()) {
  105. $post = $this->request->post();
  106. $result = MemberLogic::del($post);
  107. if($result === true) {
  108. return JsonServer::success('操作成功');
  109. }
  110. return JsonServer::error('操作失败');
  111. }
  112. }
  113. /**
  114. * 审核分销会员
  115. */
  116. public function audit()
  117. {
  118. if ($this->request->isAjax()) {
  119. $post = $this->request->post();
  120. try{
  121. validate(MemberValidate::class)->scene('audit')->check($post);
  122. }catch(ValidateException $e) {
  123. return JsonServer::error($e->getError());
  124. }
  125. if ($post['type'] == 'pass') {
  126. $res = MemberLogic::auditPass($post);
  127. } else {
  128. $res = MemberLogic::auditRefuse($post);
  129. }
  130. if ($res !== true) {
  131. return JsonServer::error('操作失败');
  132. }
  133. return JsonServer::success('操作成功');
  134. }
  135. }
  136. }