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

Apply.php 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. namespace app\admin\controller\shop;
  3. use app\admin\logic\shop\ApplyLogic;
  4. use app\admin\validate\shop\ShopApplyValidate;
  5. use app\common\basics\AdminBase;
  6. use app\common\server\JsonServer;
  7. /**
  8. * 商家入驻
  9. * Class Apply
  10. * @package app\admin\controller\shop
  11. */
  12. class Apply extends AdminBase
  13. {
  14. /**
  15. * NOTE: 申请列表
  16. * @author: 张无忌
  17. */
  18. public function lists()
  19. {
  20. if ($this->request->isAjax()) {
  21. $get = $this->request->get();
  22. $lists = ApplyLogic::lists($get);
  23. return JsonServer::success('获取成功', $lists);
  24. }
  25. return view('', [
  26. 'totalCount' => ApplyLogic::totalCount()
  27. ]);
  28. }
  29. /**
  30. * NOTE: 统计
  31. * @author: 张无忌
  32. */
  33. public function totalCount()
  34. {
  35. if ($this->request->isAjax()) {
  36. return JsonServer::success('获取成功', ApplyLogic::totalCount());
  37. }
  38. return JsonServer::error('请求异常');
  39. }
  40. /**
  41. * NOTE: 详细
  42. * @author: 张无忌
  43. */
  44. public function detail()
  45. {
  46. (new ShopApplyValidate())->goCheck('id');
  47. $id = $this->request->get('id');
  48. return view('', [
  49. 'detail' => ApplyLogic::detail($id)
  50. ]);
  51. }
  52. /**
  53. * NOTE: 审核
  54. * @author: 张无忌
  55. */
  56. public function audit()
  57. {
  58. if ($this->request->isAjax()) {
  59. (new ShopApplyValidate())->goCheck('audit');
  60. $post = $this->request->post();
  61. $res = ApplyLogic::audit($post);
  62. if ($res) {
  63. return JsonServer::success('操作成功');
  64. }
  65. $error = ApplyLogic::getError() ?: '操作失败';
  66. return JsonServer::error($error);
  67. }
  68. return view();
  69. }
  70. /**
  71. * NOTE: 删除
  72. * @author: 张无忌
  73. */
  74. public function del()
  75. {
  76. if ($this->request->isAjax()) {
  77. (new ShopApplyValidate())->goCheck('id');
  78. $id = $this->request->post('id');
  79. $res = ApplyLogic::del($id);
  80. if ($res) {
  81. return JsonServer::success('删除成功');
  82. }
  83. $error = ApplyLogic::getError() ?: '删除失败';
  84. return JsonServer::error($error);
  85. }
  86. return JsonServer::error('请求异常');
  87. }
  88. }