public function job()
 {
     import('ORG.Util.Page');
     $kejob = new KehuViewModel();
     $title = $this->_post('text');
     $data['jobname'] = array('like', array("%{$title}%"));
     $count = $kejob->where($data)->count();
     $page = new Page($count, 45);
     $show = $page->show();
     $this->list = $kejob->where($data)->order('status asc,newdate desc')->limit($page->firstRow . ',' . $page->listRows)->select();
     $this->assign('page', $show);
     $this->assign('text', $title);
     $this->display();
 }