breadcrumb1='博客'; $this->breadcrumb2='博客回复'; } public function index(){ $model=new BlogReplyModel(); $data=$model->show_blog_reply_page(); $this->assign('empty',$data['empty']);// 赋值数据集 $this->assign('list',$data['list']);// 赋值数据集 $this->assign('page',$data['page']);// 赋值分页输出 /**/ $this->display(); } function set_status(){ $d['reply_id']=I('get.id'); $d['status']=I('get.status'); $r=M('BlogReply')->save($d); if($r){ $this->redirect('BlogReply/index'); } } } ?>