/**
  * 获得系统路由
  */
 public function actionGetSystemRoute()
 {
     try {
         $data = RouteModel::getSystemRoute();
         return Utils::responseOK($data);
     } catch (JdbRbacException $e) {
         return Utils::handlerForException($e);
     }
 }