field('id,title,image,updatetime') ->where('type',$type)->where('status',1) ->order('weigh','desc')->autopage()->select(); $list = list_domain_image($list,['image']); $this->success(1,$list); } public function detail(){ $id = input('id'); $info = Db::name('jiuyezixun')->where('id',$id)->find(); $info = info_domain_image($info,['image']); $this->success(1,$info); } }