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

CommunityComment.php 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. namespace app\admin\controller\community;
  3. use app\admin\logic\community\CommunityCommentLogic;
  4. use app\admin\validate\community\CommunityCommentValidate;
  5. use app\common\basics\AdminBase;
  6. use app\common\enum\CommunityCommentEnum;
  7. use app\common\server\JsonServer;
  8. /**
  9. * 种草社区评论
  10. * Class CommunityComment
  11. * @package app\admin\controller\community
  12. */
  13. class CommunityComment extends AdminBase
  14. {
  15. /**
  16. * @notes 评论列表
  17. * @return \think\response\Json|\think\response\View
  18. * @author 段誉
  19. * @date 2022/5/10 12:05
  20. */
  21. public function lists()
  22. {
  23. if ($this->request->isAjax()) {
  24. $get = $this->request->get();
  25. $lists = CommunityCommentLogic::lists($get);
  26. return JsonServer::success("获取成功", $lists);
  27. }
  28. return view('', [
  29. 'status' => CommunityCommentEnum::getStatusDesc()
  30. ]);
  31. }
  32. /**
  33. * @notes 审核评论
  34. * @return \think\response\Json|\think\response\View
  35. * @author 段誉
  36. * @date 2022/5/10 15:12
  37. */
  38. public function audit()
  39. {
  40. if ($this->request->isAjax()) {
  41. $post = $this->request->post();
  42. (new CommunityCommentValidate())->goCheck('audit', $post);
  43. CommunityCommentLogic::audit($post);
  44. return JsonServer::success('审核成功');
  45. }
  46. $id = $this->request->get('id');
  47. return view('', [
  48. 'detail' => CommunityCommentLogic::detail($id)
  49. ]);
  50. }
  51. /**
  52. * @notes 删除评论
  53. * @return \think\response\Json|void
  54. * @throws \think\db\exception\DataNotFoundException
  55. * @throws \think\db\exception\DbException
  56. * @throws \think\db\exception\ModelNotFoundException
  57. * @author 段誉
  58. * @date 2022/5/10 15:42
  59. */
  60. public function del()
  61. {
  62. if ($this->request->isAjax()) {
  63. (new CommunityCommentValidate())->goCheck('id');
  64. $id = $this->request->post('id/d');
  65. CommunityCommentLogic::del($id);
  66. return JsonServer::success('删除成功');
  67. }
  68. }
  69. }