1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace app\api\controller;
- use app\common\model\Config;
- use app\common\model\ElectPool;
- use app\common\model\SearchHistory;
- use app\common\model\User;
- use app\common\controller\Api;
- use app\common\model\UserWantKnow;
- use app\common\model\UserWantKnowRecord;
- use think\facade\Validate;
- /**
- * @title 首页
- * @controller Index
- */
- class Index extends Api
- {
- /**
- * @title 首页banner
- * @desc 首页banner
- * @url /api/User/banner_list
- * @method POST
- * @tag 基础
- * @header name:Authorization require:1 default: desc:验证token
- */
- public function banner_list(){
- $this->check_login();
- $result = Banner::BannerList();
- $this->success($result['msg'],$result['data']);
- }
- }
|