123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace app\data\controller\api;
- use app\data\model\DataHotSearch;
- use app\data\model\DataXw;
- use app\data\model\DataXwAd;
- use app\data\model\DataXwCategory;
- use think\admin\Controller;
- use hg\apidoc\annotation\Title;
- use hg\apidoc\annotation\Returned;
- use hg\apidoc\annotation\Param;
- use hg\apidoc\annotation\Method;
- use think\db\Query;
- /**
- * @Title("首页")
- */
- class Index extends Auth
- {
- protected $noNeedLogin=['hotsearch'];
- /**
- * @Title("热门搜索")
- * @Returned ("id",desc="id")
- * @Returned ("name",desc="热词")
- * @Returned ("is_hot",desc="1:热 0:否")
- */
- public function hotsearch(){
- $list=DataHotSearch::mk()->where('is_del',1)->order('is_hot','desc')->select();
- //->where('type',1)
- $this->success('',$list);
- }
- }
|