1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| import showHome from '@/views/show/showHome'
|
| export default [{
| path: '/show',
| component: showHome,
| redirect: '/show',
| children: [{
| path: '/show',
| meta: {title: '案件分析'},
| name: '调度指挥',
| component: () => import('@/views/show/index')
| },{
| path: '/caseAnalysis',
| meta: {title: '案件分析'},
| name: '案件分析',
| component: () => import('@/views/show/caseAnalysis/caseAnalysis')
| },{
| path: '/lawTeam',
| meta: {title: '执法队伍'},
| name: '执法队伍',
| component: () => import('@/views/show/lawTeam')
| }]
| },]
|
|