/**
  * 模块显示主页面
  */
 public function cModuleIndex()
 {
     $this->_modelModule = $this->getGlobal('model/Module', 'Model_Module');
     $dataList = $this->_modelModule->getAll();
     $this->assign('dataList', $dataList);
     $this->display(VIEW_PAGE);
 }