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

DistributionMember.php 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?php
  2. namespace app\admin\controller\distribution;
  3. use app\admin\logic\distribution\DistributionLevelLogic;
  4. use app\admin\logic\distribution\DistributionMemberLogic;
  5. use app\common\basics\AdminBase;
  6. use app\common\server\JsonServer;
  7. /**
  8. * 分销会员
  9. * Class DistributionMember
  10. * @package app\admin\controller\distribution
  11. */
  12. class DistributionMember extends AdminBase
  13. {
  14. /**
  15. * @notes 分销会员列表
  16. * @return \think\response\View
  17. * @author Tab
  18. * @date 2021/9/2 18:26
  19. */
  20. public function index()
  21. {
  22. if ($this->request->isPost()) {
  23. $params = $this->request->post();
  24. $result = DistributionMemberLogic::lists($params);
  25. return JsonServer::success('', $result);
  26. }
  27. $levels = DistributionLevelLogic::getLevels();
  28. return view('', ['levels' => $levels]);
  29. }
  30. /**
  31. * @notes 开通分销会员
  32. * @return \think\response\View
  33. * @author Tab
  34. * @date 2021/9/2 19:32
  35. */
  36. public function open()
  37. {
  38. if($this->request->isPost()) {
  39. $params = $this->request->post();
  40. $result = DistributionMemberLogic::open($params);
  41. if($result) {
  42. return JsonServer::success('开通成功');
  43. }
  44. return JsonServer::error(DistributionMemberLogic::getError());
  45. }
  46. $levels = DistributionLevelLogic::getLevels();
  47. return view('', ['levels' => $levels]);
  48. }
  49. /**
  50. * @notes 用户列表
  51. * @return \think\response\Json|\think\response\View
  52. * @throws \think\db\exception\DataNotFoundException
  53. * @throws \think\db\exception\DbException
  54. * @throws \think\db\exception\ModelNotFoundException
  55. * @author Tab
  56. * @date 2021/9/3 11:50
  57. */
  58. public function userLists()
  59. {
  60. if ($this->request->isPost()) {
  61. $params = $this->request->post();
  62. $lists = DistributionMemberLogic::getUserLists($params);
  63. return JsonServer::success('', $lists);
  64. }
  65. return view();
  66. }
  67. /**
  68. * @notes 分销会员等级调整
  69. * @return \think\response\Json|\think\response\View
  70. * @author Tab
  71. * @date 2021/9/3 14:10
  72. */
  73. public function adjust()
  74. {
  75. if($this->request->isPost()) {
  76. $params = $this->request->post();
  77. $result = DistributionMemberLogic::adjust($params);
  78. if($result) {
  79. return JsonServer::success('调整成功');
  80. }
  81. return JsonServer::error(DistributionMemberLogic::getError());
  82. }
  83. $params = $this->request->get();
  84. $user = DistributionMemberLogic::getUser($params);
  85. $levels = DistributionLevelLogic::getLevels();
  86. return view('', [
  87. 'user' => $user,
  88. 'levels' => $levels
  89. ]);
  90. }
  91. /**
  92. * @notes 冻结资格/恢复资格
  93. * @return \think\response\Json
  94. * @author Tab
  95. * @date 2021/9/3 14:20
  96. */
  97. public function isFreeze()
  98. {
  99. $params = $this->request->post();
  100. $result = DistributionMemberLogic::isFreeze($params);
  101. if($result) {
  102. return JsonServer::success('操作成功');
  103. }
  104. return JsonServer::error(DistributionMemberLogic::getError());
  105. }
  106. }