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

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace app\shop\controller\goods;
  3. use app\shop\logic\goods\CommentLogic;
  4. use app\common\basics\ShopBase;
  5. use app\common\server\JsonServer;
  6. class Comment extends ShopBase
  7. {
  8. /**
  9. * 评价列表
  10. */
  11. public function lists()
  12. {
  13. if($this->request->isAjax()) {
  14. $get = $this->request->get();
  15. $get['shop_id'] = $this->shop_id;
  16. $data = CommentLogic::lists($get);
  17. return JsonServer::success('', $data);
  18. }
  19. return view();
  20. }
  21. /**
  22. * 商家回复
  23. */
  24. public function reply()
  25. {
  26. $post = $this->request->post();
  27. $result = CommentLogic::reply($post);
  28. if($result === true) {
  29. return JsonServer::success('操作成功');
  30. }
  31. return JsonServer::error(CommentLogic::getError());
  32. }
  33. }