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

Comment.php 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. namespace app\admin\controller\goods;
  3. use app\admin\logic\goods\CommentLogic;
  4. use app\common\basics\AdminBase;
  5. use app\common\server\JsonServer;
  6. class Comment extends AdminBase
  7. {
  8. /**
  9. * 评价列表
  10. */
  11. public function lists()
  12. {
  13. if($this->request->isAjax()) {
  14. $get = $this->request->get();
  15. $data = CommentLogic::lists($get);
  16. return JsonServer::success('', $data);
  17. }
  18. return view();
  19. }
  20. /**
  21. * 显示/隐藏商品评价
  22. */
  23. public function changeStatus()
  24. {
  25. $post = $this->request->post();
  26. $result = CommentLogic::changeStatus($post);
  27. if($result === true) {
  28. return JsonServer::success('操作成功');
  29. }
  30. return JsonServer::error(CommentLogic::getError());
  31. }
  32. /**
  33. * 删除
  34. */
  35. public function del()
  36. {
  37. $post = $this->request->post();
  38. $result = CommentLogic::del($post);
  39. if($result === true) {
  40. return JsonServer::success('删除成功');
  41. }
  42. return JsonServer::error(CommentLogic::getError());
  43. }
  44. }