27 lines
795 B
JavaScript
27 lines
795 B
JavaScript
import Layout from '@/layouts/index.vue';
|
|
import Views from '@/layouts/Views.vue';
|
|
|
|
export default [
|
|
{
|
|
path: '/sub-government-affairs-service/resource',
|
|
name: 'resource',
|
|
component: Layout,
|
|
redirect: '/sub-government-affairs-service/grid',
|
|
meta: { title: '土地资源管理', icon: 'icon-test' },
|
|
children: [
|
|
{
|
|
path: '/sub-government-affairs-service/grid',
|
|
component: () => import('@/views/resource/grid/index.vue'),
|
|
name: 'grid',
|
|
meta: { title: '网格化管理', icon: 'Document' },
|
|
},
|
|
// {
|
|
// path: '/annual-plan',
|
|
// component: () => import('@/views/resource/plan/index.vue'),
|
|
// name: 'annual-plan',
|
|
// meta: { title: '年度计划', icon: 'Document' },
|
|
// },
|
|
],
|
|
},
|
|
];
|