banner_list(2); return V(1,'操作成功', $reslut); } /* * 单页输出 * @param id * @return html */ public function banner_content_show() { $id = input('id', ''); $reslut = model('Banner')->find($id); $html = $reslut['content'] ? $reslut['content'] : ''; //解析html $html = htmlspecialchars_decode($html); return $html; } /* * 广告列表 */ public function get_banner_list(){ $show_type = input('show_type', ''); if (!$show_type) { return V(0,'参数错误'); } $reslut = model('Banner')->banner_list($show_type); return V(1,'操作成功', $reslut); } }