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

Policy.php 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\basics\Api;
  4. use app\api\logic\PolicyLogic;
  5. use app\common\server\JsonServer;
  6. class Policy extends Api
  7. {
  8. public $like_not_need_login = ['service', 'privacy', 'aftersale', 'userDelete'];
  9. /**
  10. * 服务协议
  11. */
  12. public function service()
  13. {
  14. $data = PolicyLogic::service();
  15. return JsonServer::success('获取成功', ['content' => $data]);
  16. }
  17. /**
  18. * 隐私政策
  19. */
  20. public function privacy()
  21. {
  22. $data = PolicyLogic::privacy();
  23. return JsonServer::success('获取成功', ['content' => $data]);
  24. }
  25. /**
  26. * 售后保障
  27. */
  28. public function afterSale()
  29. {
  30. $data = PolicyLogic::afterSale();
  31. return JsonServer::success('获取成功', ['content' => $data]);
  32. }
  33. /**
  34. * 用户注销
  35. */
  36. public function userDelete()
  37. {
  38. $data = PolicyLogic::userDelete();
  39. return JsonServer::success('获取成功', ['content' => $data]);
  40. }
  41. }