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); } }