@@ -173,15 +173,22 @@ export const constantRoutes = [
hidden: false,
alwaysShow: true,
meta: { title: '任务管理', icon : "" },
- children: [{
- path: 'index',
+ children: [
+ {
+ path: 'todo',
component: (resolve) => require(['@/views/taskManagement/todo/index'], resolve),
name: 'todo',
meta: {
title: '代办任务',
icon: ''
- }
- }]
+ },
+ children:[
+ path:'detail'
+ }
+ ]
}
]