截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Apply.php 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace app\admin\controller\distribution;
  3. use app\admin\logic\distribution\ApplyLogic;
  4. use app\common\basics\AdminBase;
  5. use app\common\server\JsonServer;
  6. use think\facade\View;
  7. class Apply extends AdminBase
  8. {
  9. /**
  10. * @Notes: 分销申请列表
  11. * @Author: 张无忌
  12. */
  13. public function lists()
  14. {
  15. if ($this->request->isAjax()) {
  16. $get = $this->request->get();
  17. $lists = ApplyLogic::lists($get);
  18. return JsonServer::success('获取成功', $lists);
  19. }
  20. return view();
  21. }
  22. /**
  23. * @Notes: 分销申请详细
  24. * @Author: 张无忌
  25. */
  26. public function detail()
  27. {
  28. $id = $this->request->get('id');
  29. View::assign('detail', ApplyLogic::detail($id));
  30. return view();
  31. }
  32. /**
  33. * @Notes: 审核分销申请
  34. * @Author: 张无忌
  35. */
  36. public function audit()
  37. {
  38. if ($this->request->isAjax()) {
  39. $post = $this->request->post();
  40. $res = ApplyLogic::audit($post);
  41. if ($res === false) {
  42. $message = ApplyLogic::getError() ?: '审核失败';
  43. return JsonServer::error($message);
  44. }
  45. return JsonServer::success('审核成功');
  46. }
  47. return view();
  48. }
  49. }