27 lines
702 B
JavaScript
Raw Normal View History

2025-01-23 01:10:59 +00:00
import Layout from '@/layouts/index.vue';
import Views from '@/layouts/Views.vue';
export default [
{
path: '/resource',
name: 'resource',
component: Layout,
2025-02-17 06:43:55 +00:00
redirect: '/grid',
meta: { title: '土地资源管理', icon: 'icon-test' },
2025-01-23 01:10:59 +00:00
children: [
{
2025-02-17 06:43:55 +00:00
path: '/grid',
component: () => import('@/views/resource/grid/index.vue'),
name: 'grid',
meta: { title: '网格化管理', icon: 'Document' },
2025-01-23 01:10:59 +00:00
},
2025-02-27 01:24:25 +00:00
// {
// path: '/annual-plan',
// component: () => import('@/views/resource/plan/index.vue'),
// name: 'annual-plan',
// meta: { title: '年度计划', icon: 'Document' },
// },
2025-01-23 01:10:59 +00:00
],
},
];