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

DistributionLevel.php 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. namespace app\admin\controller\distribution;
  3. use app\admin\logic\distribution\DistributionLevelLogic;
  4. use app\admin\validate\distribution\DistributionLevelValidate;
  5. use app\common\basics\AdminBase;
  6. use app\common\server\JsonServer;
  7. class DistributionLevel extends AdminBase
  8. {
  9. /**
  10. * @notes 分销等级列表
  11. * @return \think\response\View
  12. * @author Tab
  13. * @date 2021/9/1 11:01
  14. */
  15. public function index()
  16. {
  17. if ($this->request->isPost()) {
  18. $result = DistributionLevelLogic::index();
  19. return JsonServer::success('', $result);
  20. }
  21. return view();
  22. }
  23. /**
  24. * @notes 添加分销等级
  25. * @return \think\response\View
  26. * @author Tab
  27. * @date 2021/9/1 12:02
  28. */
  29. public function add()
  30. {
  31. if ($this->request->isPost()) {
  32. $params = (new DistributionLevelValidate())->goCheck('add');
  33. $result = DistributionLevelLogic::add($params);
  34. if($result) {
  35. return JsonServer::success('添加成功');
  36. }
  37. return JsonServer::error(DistributionLevelLogic::getError());
  38. }
  39. // 显示添加页面
  40. return view();
  41. }
  42. /**
  43. * @notes 编辑分销等级
  44. * @return \think\response\View
  45. * @author Tab
  46. * @date 2021/9/1 15:39
  47. */
  48. public function edit()
  49. {
  50. if ($this->request->isPost()) {
  51. $params = (new DistributionLevelValidate())->goCheck('edit');
  52. $result = DistributionLevelLogic::edit($params);
  53. if($result) {
  54. return JsonServer::success('编辑成功');
  55. }
  56. return JsonServer::error(DistributionLevelLogic::getError());
  57. }
  58. $params = $this->request->get();
  59. $detail = DistributionLevelLogic::detail($params);
  60. $template = $detail['is_default'] ? 'edit_default' : 'edit';
  61. return view($template, ['detail' => $detail]);
  62. }
  63. /**
  64. * @notes 删除分销等级
  65. * @return \think\response\Json
  66. * @author Tab
  67. * @date 2021/9/1 16:18
  68. */
  69. public function delete()
  70. {
  71. $params = $this->request->post();
  72. $result = DistributionLevelLogic::delete($params);
  73. if($result) {
  74. return JsonServer::success('删除成功');
  75. }
  76. return JsonServer::error(DistributionLevelLogic::getError());
  77. }
  78. }