46 lines
1.6 KiB
JavaScript
Raw Normal View History

2025-02-26 13:36:43 +08:00
import Layout from '@/layouts/index.vue';
import Views from '@/layouts/Views.vue';
2025-02-26 13:36:43 +08:00
const landsRoutes = [
{
2025-03-03 14:58:28 +08:00
path: '/sub-government-affairs-service/landManage',
2025-02-26 13:36:43 +08:00
name: 'landManage',
component: Views,
2025-05-15 15:15:40 +08:00
redirect: '/sub-government-affairs-service/plantPlan',
2025-05-12 17:46:49 +08:00
meta: { title: '土地管理', icon: 'Grape' },
2025-02-26 13:36:43 +08:00
children: [
2025-05-15 15:15:40 +08:00
// {
// path: '/sub-government-affairs-service/landsManage',
// name: 'landsManage',
// component: () => import('@/views/landManage/component/landsManage/index.vue'),
// meta: { title: '土地信息登记', icon: '' },
// },
2025-05-26 16:10:52 +08:00
// {
// path: '/sub-government-affairs-service/plantPlan',
// name: 'plantPlan',
// component: () => import('@/views/landManage/component/plantPlan/index.vue'),
// meta: { title: '种植计划', icon: '' },
// },
2025-05-26 17:52:54 +08:00
// {
// path: '/sub-government-affairs-service/operationRecord',
// name: 'operationRecord',
// component: () => import('@/views/landManage/component/operationRecord/index.vue'),
// meta: { title: '作业记录', icon: '' },
// },
2025-02-26 13:36:43 +08:00
{
2025-03-03 14:58:28 +08:00
path: '/sub-government-affairs-service/landPartol',
2025-02-26 13:36:43 +08:00
name: 'landPartol',
component: () => import('@/views/landManage/component/landPartol/index.vue'),
2025-05-12 17:46:49 +08:00
meta: { title: '土地巡查', icon: '' },
2025-02-26 13:36:43 +08:00
},
{
2025-03-03 14:58:28 +08:00
path: '/sub-government-affairs-service/illegalHandle',
2025-02-26 13:36:43 +08:00
name: 'illegalHandle',
component: () => import('@/views/landManage/component/illegalHandle/index.vue'),
2025-05-12 17:46:49 +08:00
meta: { title: '土地违法处理', icon: '' },
2025-02-26 13:36:43 +08:00
},
],
},
];
export default landsRoutes;