1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| import detailsRouter from './details'
| import updateRouter from './update'
|
| const enterpriseRouter = [
| {
| path: '/area/enterprise/index', // 列表
| component: () => import('@/views/area/enterprise/list/index')
| },
| {
| path: '/area/enterprise/check', // 复核页面
| component: () => import('@/views/area/enterprise/list/Check')
| },
| {
| path: '/area/enterprise/imgDialog', // 图片预览
| component: () => import('@/views/area/enterprise/layout/ImgDialog')
| },
| detailsRouter, // 详情路由
| updateRouter // 编辑页面
| ]
| export default enterpriseRouter
|
|