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