// 弹出会议室介绍
public function alertIntro(){
if(IS_POST){
$data = $_POST;
$intro = $data['intro'];
if(empty($intro)){
$this->success('暂无会议室介绍');
}else{
$this->success($intro);
}

}else{
$this->error('参数传递错误');
}
}