function deleteitemsAction()
 {
     $this->_helper->layout()->disableLayout();
     $chungchiModel = new Front_Model_Chungchi();
     if ($this->_request->isPost()) {
         $item = $this->getRequest()->getPost('cid');
         foreach ($item as $k => $v) {
             $chungchiModel->delete('cc_id=' . $v);
         }
     }
     $this->_redirect('hethong/chungchi/index/page/' . $this->_page);
 }