123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use think\Db;
- /**
- * 首页接口
- */
- class Index extends Api
- {
- protected $noNeedLogin = ['*'];
- protected $noNeedRight = ['*'];
- /**
- * 首页
- *
- */
- public function index()
- {
- //轮播图
- $where = [
- 'status' => 1,
- ];
- $banner = Db::name('banner')->field('id,title,type,image,video_file,url')->where($where)->order('weigh', 'desc')->select();
- $banner = list_domain_image($banner, ['image','video_file']);
- //第一条公告
- $message = Db::name('message_sys')->where('is_show',1)->where('is_index',1)->order('weigh','desc')->find();
- $message = $this->info_lang($message,['title','info']);
- //留个好评
- $haoping = Db::name('appplat')->field('image,url')->where('type',1)->order('weigh', 'desc')->select();
- $haoping = list_domain_image($haoping, ['image']);
- //关注我们
- $followus = Db::name('appplat')->field('image,url')->where('type',2)->order('weigh', 'desc')->select();
- $followus = list_domain_image($followus, ['image']);
- $result = [
- 'banner' => $banner,
- 'message' => $message,
- 'haoping' => $haoping,
- 'followus' => $followus,
- 'contact_mobile' => config('site.contact_mobile'),
- 'contact_email' => config('site.contact_email'),
- 'index_middle_image' => localpath_to_netpath(config('site.index_middle_image')),
- 'index_bottom_image' => localpath_to_netpath(config('site.index_bottom_image')),
- ];
- $this->success(1,$result);
- }
- }
|