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

ArticleCategory.php 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?php
  2. namespace app\admin\controller\content;
  3. use app\admin\logic\content\ArticleCategoryLogic;
  4. use app\admin\validate\content\ArticleCategoryValidate;
  5. use app\common\basics\AdminBase;
  6. use app\common\server\JsonServer;
  7. class ArticleCategory 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 = ArticleCategoryLogic::lists($get);
  18. return JsonServer::success("获取成功", $lists);
  19. }
  20. return view();
  21. }
  22. /**
  23. * @NOTES: 添加文章分类
  24. * @author: 张无忌
  25. */
  26. public function add()
  27. {
  28. if ($this->request->isAjax()) {
  29. (new ArticleCategoryValidate())->goCheck('add');
  30. $post = $this->request->post();
  31. $res = ArticleCategoryLogic::add($post);
  32. if ($res === false) {
  33. $error = ArticleCategoryLogic::getError() ?: '新增失败';
  34. return JsonServer::error($error);
  35. }
  36. return JsonServer::success('新增成功');
  37. }
  38. return view();
  39. }
  40. /**
  41. * @NOTES: 编辑文章分类
  42. * @author: 张无忌
  43. */
  44. public function edit()
  45. {
  46. if ($this->request->isAjax()) {
  47. (new ArticleCategoryValidate())->goCheck('edit');
  48. $post = $this->request->post();
  49. $res = ArticleCategoryLogic::edit($post);
  50. if ($res === false) {
  51. $error = ArticleCategoryLogic::getError() ?: '编辑失败';
  52. return JsonServer::error($error);
  53. }
  54. return JsonServer::success('编辑成功');
  55. }
  56. $id = $this->request->get('id');
  57. return view('', [
  58. 'detail' => ArticleCategoryLogic::detail($id)
  59. ]);
  60. }
  61. /**
  62. * @NOTES: 删除文章分类
  63. * @author: 张无忌
  64. */
  65. public function del()
  66. {
  67. if ($this->request->isAjax()) {
  68. (new ArticleCategoryValidate())->goCheck('id');
  69. $id = $this->request->post('id');
  70. $res = ArticleCategoryLogic::del($id);
  71. if ($res === false) {
  72. $error = ArticleCategoryLogic::getError() ?: '删除失败';
  73. return JsonServer::error($error);
  74. }
  75. return JsonServer::success('删除成功');
  76. }
  77. return JsonServer::error('异常');
  78. }
  79. /**
  80. * @Notes: 隐藏分类
  81. * @Author: 张无忌
  82. */
  83. public function hide()
  84. {
  85. if ($this->request->isAjax()) {
  86. (new ArticleCategoryValidate())->goCheck('id');
  87. $id = $this->request->post('id');
  88. $res = ArticleCategoryLogic::hide($id);
  89. if ($res === false) {
  90. $error = ArticleCategoryLogic::getError() ?: '操作失败';
  91. return JsonServer::error($error);
  92. }
  93. return JsonServer::success('操作成功');
  94. }
  95. return JsonServer::success('异常');
  96. }
  97. }