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

Article.php 3.0KB

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