// 路由配置文件 export default [ { path: '/user', routes: [ { path: '/user/login', redirect: '', name: '登录', component: "@/pages/user/login", } ] }, { path: '/', routes: [ { path: '/standard/index', redirect: '', name: '生成标准页面', component: "@/pages/standard/index", } ] }, { path: '/', routes: [ { path: '/standard/index', redirect: '', name: '生成标准页面', component: "@/pages/standard/index", }, { path: '/examine', redirect: '', name: '走动式管理', routes: [ { path: '/examine/index', name: '考评分类管理', component: "@/pages/examine/index/index", }, { path: '/examine/question', name: '考核问题管理', component: "@/pages/examine/question/index", }, { path: '/examine/modal', name: '考核点位管理', component: "@/pages/examine/modal/index", }, { path: '/examine/record', name: '考核记录管理', component: "@/pages/examine/record/index", }, { path: '/examine/errorRecord', name: '考核记录管理', component: "@/pages/examine/errorRecord/index", }, { path: '/examine/recordSummary', name: '考核记录汇总', component: "@/pages/examine/recordSummary/index", } ] }, // { // path: "/setting", // redirect: '', // name: '系统设置', // routes: [ // { // path: '/setting/menu', // name: '菜单管理', // component: "@/pages/setting/menu/index", // }, // ] // } ] } ]