// import RecordList from "../Command/RecordList";
import DataScreen from './DataScreen';
import GIS from "./GIS";
// import V5page from './V5Page';
import { gup } from "../../utils/utils"
let type = gup('app_type', window.location.href);
let _CommandRouter = [];
if(type==1){
_CommandRouter = [
{
menuName: "GIS调度",
path: "GIS",
component: ,
},
];
}else{
_CommandRouter = [
// {
// menuName: "数据大屏",
// path: "dataScreen",
// component: ,
// },
{
menuName: "GIS调度",
path: "GIS",
component: ,
},
];
}
export const CommandRouter = _CommandRouter