diff --git a/src/router/modules/case.js b/src/router/modules/case.js index d6b7aa1..2745e93 100644 --- a/src/router/modules/case.js +++ b/src/router/modules/case.js @@ -75,7 +75,8 @@ meta: { title: '事件详情', icon: '', permission: '' } } ] -}, { +}, +{ path: 'caseReport', component: Layout, redirect: '/workReportList', @@ -106,4 +107,36 @@ meta: { title: '查询上报请示', icon: '', permission: '/searchReportList' } } ] +}, +{ + path: 'caseSupervise', + component: Layout, + redirect: '/workSuperviseList', + name: 'CaseSupervise', + alwaysShow: true, + meta: { + title: '督办管理', + icon: 'icon-config', // 图标 + permission: '/caseSupervise' + }, + children: [ + { + path: '/workSuperviseList', + name: 'WorkSuperviseList', + component: () => import('@/views/superviseManage/waitForSupervise'), + meta: { title: '待办督办', icon: '', permission: '/workSuperviseList' } + }, + { + path: '/checkSuperviseList', + name: 'CheckSuperviseList', + component: () => import('@/views/superviseManage/waitCheckSupervise'), + meta: { title: '审核督办', icon: '', permission: '/checkSuperviseList' } + }, + { + path: '/searchSuperviseList', + name: 'SearchSuperviseList', + component: () => import('@/views/caseManage/caseReportManage/searchReportList'), + meta: { title: '查询督办', icon: '', permission: '/searchSuperviseList' } + } + ] }]