const routes = [ { path: '/', redirect: '/teamViewer/paramsSetting', }, // ------------------------------GLQ远程维护---------------------------------- // 建立远程链接 { path: '/teamViewer/paramsSetting', name: '参数设置', component: '@/pages/GLQ/TeamViewer/ParamsSetting' }, // 交互维护命令 { path: '/teamViewer/systemTime', name: '系统时间', component: '@/pages/GLQ/TeamViewer/SystemTime' }, { path: '/teamViewer/currentIP', name: '当前IP', component: '@/pages/GLQ/TeamViewer/CurrentIP' }, { path: '/teamViewer/pingCommand', name: 'PING命令', component: '@/pages/GLQ/TeamViewer/PingCommand' }, { path: '/teamViewer/telnetCommand', name: 'TELNET命令', component: '@/pages/GLQ/TeamViewer/TelnetCommand' }, { path: '/teamViewer/otherCommand', name: '其他命令', component: '@/pages/GLQ/TeamViewer/OtherCommand' }, // --------------------------------------------------------------------------- // ------------------------------网络MMJ管理---------------------------------- { path: '/webMMJ/mmjInitInstall', name: 'MMJ初装', component: '@/pages/GLQ/WebMMJ/MmjInitInstall' }, { path: '/webMMJ/statusQuery', name: '状态查询', component: '@/pages/GLQ/WebMMJ/StatusQuery' }, { path: '/webMMJ/keyDestruction', name: '密钥销毁', component: '@/pages/GLQ/WebMMJ/KeyDestruction' }, { path: '/webMMJ/keyRemoteKill', name: '密钥遥毙', component: '@/pages/GLQ/WebMMJ/KeyRemoteKill' }, { path: '/webMMJ/mmjRemoteKill', name: 'MMJ遥毙', component: '@/pages/GLQ/WebMMJ/MmjRemoteKill' }, // --------------------------------------------------------------------------- // ------------------------------网络GLQ配置---------------------------------- // 获取配置信息 // { path: '/webGLQ/systemTime', name: '服务列表信息', component: '@/pages/GLQ/webGLQ/SystemTime' }, // { path: '/webGLQ/currentIP', name: '网络配置信息', component: '@/pages/GLQ/webGLQ/CurrentIP' }, // { path: '/webGLQ/pingCommand', name: '安全策略信息', component: '@/pages/GLQ/webGLQ/PingCommand' }, // { path: '/webGLQ/telnetCommand', name: '管理配置信息', component: '@/pages/GLQ/webGLQ/TelnetCommand' }, // { path: '/webGLQ/otherCommand', name: 'VPN策略信息', component: '@/pages/GLQ/webGLQ/OtherCommand' }, // { path: '/webGLQ/paramsSetting', name: '防火墙策略信息', component: '@/pages/GLQ/webGLQ/ParamsSetting' }, // { path: '/webGLQ/paramsSetting', name: '日志记录信息', component: '@/pages/GLQ/webGLQ/ParamsSetting' }, // 远程文件配置 // { path: '/webMMJ/systemTime', name: '服务列表', component: '@/pages/GLQ/webMMJ/SystemTime' }, // { path: '/webMMJ/currentIP', name: '网络参数', component: '@/pages/GLQ/webMMJ/CurrentIP' }, // { path: '/webMMJ/pingCommand', name: '安全策略', component: '@/pages/GLQ/webMMJ/PingCommand' }, // { path: '/webMMJ/telnetCommand', name: '管理配置', component: '@/pages/GLQ/webMMJ/TelnetCommand' }, // { path: '/webMMJ/otherCommand', name: 'VPN策略', component: '@/pages/GLQ/webMMJ/OtherCommand' }, // --------------------------------------------------------------------------- { path: '*', component: '@/pages/404', layout: false } ] export default routes;