1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
| import Enterprise from '@/views/area/enterprise/layout/Enterprise'
| const updateRouter = {
| path: '/area/enterprise/update/',
| component: Enterprise,
| // redirect: '/area/enterprise/details/enterpriseBaseInfo',
| children: [
| {
| path: 'enterpriseBaseInfo',
| component: () => import('@/views/area/enterprise/update/EnterpriseBaseInfo'),
| meta: { title: '企业信息' }
| },
| {
| path: 'applyInfo',
| component: () => import('@/views/area/enterprise/update/ApplyInfo'),
| meta: { title: '申请信息' }
| },
| {
| path: 'projectCompany',
| component: () => import('@/views/area/enterprise/update/ProjectCompany'),
| meta: { title: '项目公司' }
| },
| {
| path: 'approveHistory',
| component: () => import('@/views/area/enterprise/details/ApproveHistory'),
| meta: { title: '历史审批意见' }
| },
| {
| path: 'flowRecord',
| component: () => import('@/views/area/enterprise/details/FlowRecord'),
| meta: { title: '流程流转记录' }
| },
| {
| path: 'imageInfo',
| component: () => import('@/views/area/enterprise/update/ImageInfo'),
| meta: { title: '影像信息' }
| },
| {
| path: 'approveOpinion',
| component: () => import('@/views/area/enterprise/update/ApproveOpinion'),
| meta: { title: '审批意见' }
| },
| {
| path: 'changeHistory',
| component: () => import('@/views/area/enterprise/details/ChangeHistory'),
| meta: { title: '维护记录' }
| }
| ]
| }
| export default updateRouter
|
|