55 lines
1.9 KiB
JavaScript
55 lines
1.9 KiB
JavaScript
import Layout from '@/layouts/index.vue';
|
|
// import annualplanRouters from './annualplan';
|
|
import statisticsRoutes from './statisticAnalysis';
|
|
import landsRoutes from './lands';
|
|
import dictRoutes from './dict';
|
|
|
|
export default [
|
|
{
|
|
path: '/sub-government-affairs-service/resource',
|
|
name: 'resourceManagement',
|
|
component: Layout,
|
|
redirect: '/sub-government-affairs-service/landCassification',
|
|
meta: { title: '土地资源管理', icon: 'icon-test' },
|
|
children: [
|
|
{
|
|
path: '/sub-government-affairs-service/landCassification',
|
|
name: 'landCassification',
|
|
component: () => import('@/views/dict/component/landCassification/index.vue'),
|
|
meta: { title: '土地分类', icon: '' },
|
|
},
|
|
{
|
|
redirect: '/sub-government-affairs-service/add-grid',
|
|
path: '/sub-government-affairs-service/grid',
|
|
// component: () => import('@/views/resource/grid/index.vue'),
|
|
name: 'grid',
|
|
meta: { title: '土地资源网格化管理', icon: 'Memo' },
|
|
children: [
|
|
{
|
|
path: '/sub-government-affairs-service/add-grid',
|
|
component: () => import('@/views/resource/grid/AddGrid.vue'),
|
|
name: 'add',
|
|
meta: { title: '网格管理', icon: '' },
|
|
},
|
|
{
|
|
path: '/sub-government-affairs-service/add--grid-member',
|
|
component: () => import('@/views/resource/grid/GridMember.vue'),
|
|
name: 'member',
|
|
meta: { title: '网格员管理', icon: '' },
|
|
},
|
|
// {
|
|
// path: '/sub-government-affairs-service/grid--management',
|
|
// component: () => import('@/views/resource/grid/GridManagement.vue'),
|
|
// name: 'management',
|
|
// meta: { title: '网格化管理', icon: '' },
|
|
// },
|
|
],
|
|
},
|
|
// ...annualplanRouters,
|
|
...landsRoutes,
|
|
// ...statisticsRoutes,
|
|
...dictRoutes,
|
|
],
|
|
},
|
|
];
|