Index.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\Model\AboutUsModel;
  4. use app\api\model\Type;
  5. use app\api\model\IntroduceModel;
  6. use app\common\controller\Api;
  7. use think\Cache;
  8. use think\Request;
  9. /**
  10. * 首页接口
  11. */
  12. class Index extends Api
  13. {
  14. protected $noNeedLogin = ['*'];
  15. protected $noNeedRight = ['*'];
  16. /**
  17. * 首页
  18. *
  19. */
  20. public function index()
  21. {
  22. $this->success('请求成功');
  23. }
  24. /**
  25. * 所有文案显示
  26. */
  27. public function allIntroduce()
  28. {
  29. $introller = new IntroduceModel();
  30. $result = $introller->allIntroduce();
  31. return $result;
  32. }
  33. /**
  34. * 所有栏目显示
  35. */
  36. public function allType()
  37. {
  38. $type = new Type();
  39. $result = $type->allType();
  40. return $result;
  41. }
  42. /**
  43. * 单个栏目下的文案
  44. * 参数 id 栏目id
  45. */
  46. public function introduce(Request $request)
  47. {
  48. $id = $request->post('id');
  49. if (!$id) {
  50. return $this->result('网络错误',[],100);
  51. }
  52. $introduce = new IntroduceModel();
  53. $result = $introduce->introduce($id);
  54. return $result;
  55. }
  56. /**
  57. * 文案详情
  58. * 参数 id 文案id
  59. */
  60. public function introduceInfo(Request $request)
  61. {
  62. $id = $request->post('id');
  63. if (!$id) {
  64. return $this->result('网络错误',[],100);
  65. }
  66. $introduce = new IntroduceModel();
  67. $result = $introduce->introduceInfo($id);
  68. return $result;
  69. }
  70. /**
  71. * 联系我们
  72. */
  73. public function aboutUs()
  74. {
  75. $aboutUs = new AboutUsModel();
  76. $result = $aboutUs->index();
  77. return $result;
  78. }
  79. }