26 lines
779 B
JavaScript
26 lines
779 B
JavaScript
|
import Layout from '@/layouts/index.vue';
|
||
|
|
||
|
export default [
|
||
|
{
|
||
|
path: '/sub-government-affairs-service/system',
|
||
|
name: 'system',
|
||
|
component: Layout,
|
||
|
redirect: '/sub-government-affairs-service/system-dict',
|
||
|
meta: { title: '系统管理', icon: 'Document' },
|
||
|
children: [
|
||
|
{
|
||
|
path: '/sub-government-affairs-service/system-dict-type',
|
||
|
component: () => import('@/views/system/dict/type.vue'),
|
||
|
name: 'system-dict-type',
|
||
|
meta: { title: '字典类型', icon: 'Document' },
|
||
|
},
|
||
|
{
|
||
|
path: '/sub-government-affairs-service/system-dict',
|
||
|
component: () => import('@/views/system/dict/index.vue'),
|
||
|
name: 'system-dict',
|
||
|
meta: { title: '字典管理', icon: 'Document' },
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
];
|