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';
|
2025-03-10 09:37:26 +08:00
|
|
|
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-05-22 15:12:38 +08:00
|
|
|
name: 'resourceManagement',
|
2025-01-23 01:10:59 +00:00
|
|
|
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-05-22 15:12:38 +08:00
|
|
|
redirect: '/sub-government-affairs-service/add-grid',
|
2025-02-28 06:28:54 +00:00
|
|
|
path: '/sub-government-affairs-service/grid',
|
2025-05-22 15:12:38 +08:00
|
|
|
// component: () => import('@/views/resource/grid/index.vue'),
|
2025-02-17 06:43:55 +00:00
|
|
|
name: 'grid',
|
2025-05-15 15:15:40 +08:00
|
|
|
meta: { title: '网格化管理', icon: 'Memo' },
|
|
|
|
children: [
|
|
|
|
{
|
2025-05-22 15:12:38 +08:00
|
|
|
path: '/sub-government-affairs-service/add-grid',
|
2025-05-23 16:40:36 +08:00
|
|
|
component: () => import('@/views/resource/grid/AddGrid.vue'),
|
2025-05-22 15:12:38 +08:00
|
|
|
name: 'add',
|
2025-05-15 15:15:40 +08:00
|
|
|
meta: { title: '新增网格', icon: '' },
|
|
|
|
},
|
2025-05-22 15:12:38 +08:00
|
|
|
{
|
|
|
|
path: '/sub-government-affairs-service/add--grid-member',
|
2025-05-23 16:40:36 +08:00
|
|
|
component: () => import('@/views/resource/grid/GridMember.vue'),
|
2025-05-22 15:12:38 +08:00
|
|
|
name: 'member',
|
|
|
|
meta: { title: '新增网格员', icon: '' },
|
|
|
|
},
|
2025-06-05 17:40:58 +08:00
|
|
|
// {
|
|
|
|
// path: '/sub-government-affairs-service/grid--management',
|
|
|
|
// component: () => import('@/views/resource/grid/GridManagement.vue'),
|
|
|
|
// name: 'management',
|
|
|
|
// meta: { title: '网格化管理', icon: '' },
|
|
|
|
// },
|
2025-05-15 15:15:40 +08:00
|
|
|
],
|
2025-01-23 01:10:59 +00:00
|
|
|
},
|
2025-03-06 08:16:59 +00:00
|
|
|
...annualplanRouters,
|
2025-03-10 09:37:26 +08:00
|
|
|
...landsRoutes,
|
2025-05-23 14:33:04 +08:00
|
|
|
// ...statisticsRoutes,
|
2025-03-10 09:37:26 +08:00
|
|
|
...dictRoutes,
|
2025-01-23 01:10:59 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
];
|