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

CommunityCategory.php 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?php
  2. namespace app\admin\controller\community;
  3. use app\admin\logic\community\CommunityCategoryLogic;
  4. use app\admin\validate\community\CommunityCategoryValidate;
  5. use app\common\basics\AdminBase;
  6. use app\common\server\JsonServer;
  7. /**
  8. * 种草社区分类
  9. * Class CommunityCategory
  10. * @package app\admin\controller\content
  11. */
  12. class CommunityCategory extends AdminBase
  13. {
  14. /**
  15. * @notes 获取分类列表
  16. * @return \think\response\Json|\think\response\View
  17. * @throws \think\db\exception\DbException
  18. * @author 段誉
  19. * @date 2022/4/28 10:41
  20. */
  21. public function lists()
  22. {
  23. if ($this->request->isAjax()) {
  24. $get = $this->request->get();
  25. $lists = CommunityCategoryLogic::lists($get);
  26. return JsonServer::success("获取成功", $lists);
  27. }
  28. return view();
  29. }
  30. /**
  31. * @notes 新增分类
  32. * @return \think\response\Json|\think\response\View
  33. * @author 段誉
  34. * @date 2022/4/28 10:39
  35. */
  36. public function add()
  37. {
  38. if ($this->request->isAjax()) {
  39. $post = $this->request->post();
  40. $post['del'] = 0;
  41. (new CommunityCategoryValidate())->goCheck('add', $post);
  42. CommunityCategoryLogic::add($post);
  43. return JsonServer::success('新增成功');
  44. }
  45. return view();
  46. }
  47. /**
  48. * @notes 编辑分类
  49. * @return \think\response\Json|\think\response\View
  50. * @author 段誉
  51. * @date 2022/4/28 10:40
  52. */
  53. public function edit()
  54. {
  55. if ($this->request->isAjax()) {
  56. $post = $this->request->post();
  57. $post['del'] = 0;
  58. (new CommunityCategoryValidate())->goCheck('edit', $post);
  59. CommunityCategoryLogic::edit($post);
  60. return JsonServer::success('编辑成功');
  61. }
  62. $id = $this->request->get('id');
  63. return view('', [
  64. 'detail' => CommunityCategoryLogic::detail($id)
  65. ]);
  66. }
  67. /**
  68. * @notes 删除分类
  69. * @return \think\response\Json
  70. * @author 段誉
  71. * @date 2022/4/28 10:40
  72. */
  73. public function del()
  74. {
  75. if ($this->request->isAjax()) {
  76. (new CommunityCategoryValidate())->goCheck('id');
  77. $id = $this->request->post('id');
  78. $result = CommunityCategoryLogic::del($id);
  79. if (false === $result) {
  80. return JsonServer::error(CommunityCategoryLogic::getError() ?: '删除失败');
  81. }
  82. return JsonServer::success('删除成功');
  83. }
  84. return JsonServer::error('异常');
  85. }
  86. /**
  87. * @notes 设置显示z状态
  88. * @return \think\response\Json
  89. * @author 段誉
  90. * @date 2022/4/28 10:41
  91. */
  92. public function status()
  93. {
  94. if ($this->request->isAjax()) {
  95. (new CommunityCategoryValidate())->goCheck('status');
  96. $post = $this->request->post();
  97. CommunityCategoryLogic::setShowStatus($post);
  98. return JsonServer::success('操作成功');
  99. }
  100. return JsonServer::success('异常');
  101. }
  102. }