123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- namespace app\api\controller;
- use app\api\Model\AboutUsModel;
- use app\api\model\Type;
- use app\api\model\IntroduceModel;
- use app\common\controller\Api;
- use think\Cache;
- use think\Request;
- /**
- * 首页接口
- */
- class Index extends Api
- {
- protected $noNeedLogin = ['*'];
- protected $noNeedRight = ['*'];
- /**
- * 首页
- *
- */
- public function index()
- {
- $this->success('请求成功');
- }
- /**
- * 所有文案显示
- */
- public function allIntroduce()
- {
- $introller = new IntroduceModel();
- $result = $introller->allIntroduce();
- return $result;
- }
- /**
- * 所有栏目显示
- */
- public function allType()
- {
- $type = new Type();
- $result = $type->allType();
- return $result;
- }
- /**
- * 单个栏目下的文案
- * 参数 id 栏目id
- */
- public function introduce(Request $request)
- {
- $id = $request->post('id');
- if (!$id) {
- return $this->result('网络错误',[],100);
- }
- $introduce = new IntroduceModel();
- $result = $introduce->introduce($id);
- return $result;
- }
- /**
- * 文案详情
- * 参数 id 文案id
- */
- public function introduceInfo(Request $request)
- {
- $id = $request->post('id');
- if (!$id) {
- return $this->result('网络错误',[],100);
- }
- $introduce = new IntroduceModel();
- $result = $introduce->introduceInfo($id);
- return $result;
- }
- /**
- * 联系我们
- */
- public function aboutUs()
- {
- $aboutUs = new AboutUsModel();
- $result = $aboutUs->index();
- return $result;
- }
- }
|