28 lines
797 B
JavaScript
Raw Normal View History

2025-01-23 01:10:59 +00:00
import Layout from '@/layouts/index.vue';
2025-03-06 08:16:59 +00:00
import annualplanRouters from './annualplan';
import statisticsRoutes from './statisticAnalysis';
import landsRoutes from './lands';
import dictRoutes from './dict';
2025-01-23 01:10:59 +00:00
export default [
{
2025-02-28 06:28:54 +00:00
path: '/sub-government-affairs-service/resource',
2025-01-23 01:10:59 +00:00
name: 'resource',
component: Layout,
2025-02-28 06:28:54 +00:00
redirect: '/sub-government-affairs-service/grid',
2025-02-17 06:43:55 +00:00
meta: { title: '土地资源管理', icon: 'icon-test' },
2025-01-23 01:10:59 +00:00
children: [
{
2025-02-28 06:28:54 +00:00
path: '/sub-government-affairs-service/grid',
2025-02-17 06:43:55 +00:00
component: () => import('@/views/resource/grid/index.vue'),
name: 'grid',
meta: { title: '网格化管理', icon: 'Document' },
2025-01-23 01:10:59 +00:00
},
2025-03-06 08:16:59 +00:00
...annualplanRouters,
...landsRoutes,
2025-03-19 07:45:27 +01:00
...statisticsRoutes,
...dictRoutes,
2025-01-23 01:10:59 +00:00
],
},
];