39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
![]() |
import Layout from '@/layouts/index.vue';
|
||
|
|
||
|
const dictRoutes = [
|
||
|
{
|
||
|
path: '/sub-government-affairs-service/dict',
|
||
|
name: 'dict',
|
||
|
component: Layout,
|
||
|
redirect: '/sub-government-affairs-service/region',
|
||
|
meta: { title: '基础信息维护', icon: 'Document' },
|
||
|
children: [
|
||
|
{
|
||
|
path: '/sub-government-affairs-service/region',
|
||
|
name: 'region',
|
||
|
component: () => import('@/views/dict/component/region/index.vue'),
|
||
|
meta: { title: '行政区域信息', icon: 'Document' },
|
||
|
},
|
||
|
{
|
||
|
path: '/sub-government-affairs-service/landCassification',
|
||
|
name: 'landCassification',
|
||
|
component: () => import('@/views/dict/component/landCassification/index.vue'),
|
||
|
meta: { title: '土地分类', icon: 'Document' },
|
||
|
},
|
||
|
{
|
||
|
path: '/sub-government-affairs-service/dictCrop',
|
||
|
name: 'dictCrop',
|
||
|
component: () => import('@/views/dict/component/dictCrop/index.vue'),
|
||
|
meta: { title: '种植产物信息', icon: 'Document' },
|
||
|
},
|
||
|
{
|
||
|
path: '/sub-government-affairs-service/soilClassification',
|
||
|
name: 'soilClassification',
|
||
|
component: () => import('@/views/dict/component/soilClassification/index.vue'),
|
||
|
meta: { title: '土壤分类', icon: 'Document' },
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
];
|
||
|
export default dictRoutes;
|