where('status',1)->order('weight desc,id desc')->autopage()->select(); $list = list_domain_image($list,['image']); $this->success('success',$list); } //某个话题详情 public function info(){ $id = input('id',0); $info = Db::name('topic_hub')->where(['status'=>1,'id'=>$id])->find(); $info = info_domain_image($info,['image']); $this->success('success',$info); } //轮播图 public function banner(){ $list = Db::name('topic_banner')->where('status',1)->order('weight desc')->select(); $list = list_domain_image($list,['image']); $this->success(1,$list); } }