2025-03-06 16:48:31 +08:00
|
|
|
import Views from '@/layouts/Views.vue';
|
2025-02-27 14:57:30 +08:00
|
|
|
|
|
|
|
const annualplanRoutes = [
|
|
|
|
{
|
2025-03-03 14:58:28 +08:00
|
|
|
path: '/sub-government-affairs-service/annualPlan',
|
2025-02-27 14:57:30 +08:00
|
|
|
name: 'annualPlan',
|
2025-03-06 16:48:31 +08:00
|
|
|
component: Views,
|
2025-03-03 14:58:28 +08:00
|
|
|
redirect: '/sub-government-affairs-service/annualPlans',
|
2025-05-12 17:46:49 +08:00
|
|
|
meta: { title: '年度种植计划', icon: '' },
|
2025-02-27 14:57:30 +08:00
|
|
|
children: [
|
|
|
|
{
|
2025-03-03 14:58:28 +08:00
|
|
|
path: '/sub-government-affairs-service/annualPlans',
|
2025-02-27 14:57:30 +08:00
|
|
|
name: 'annualPlans',
|
|
|
|
component: () => import('@/views/annualPlan/component/annualPlans/index.vue'),
|
2025-05-12 17:46:49 +08:00
|
|
|
meta: { title: '年度种植计划', icon: '' },
|
2025-02-27 14:57:30 +08:00
|
|
|
},
|
2025-05-12 17:46:49 +08:00
|
|
|
// {
|
|
|
|
// path: '/sub-government-affairs-service/plantings',
|
|
|
|
// name: 'plantings',
|
|
|
|
// component: () => import('@/views/annualPlan/component/plantings/index.vue'),
|
|
|
|
// meta: { title: '网格种植进度', icon: 'Document' },
|
|
|
|
// },
|
2025-02-27 14:57:30 +08:00
|
|
|
],
|
|
|
|
},
|
|
|
|
];
|
|
|
|
export default annualplanRoutes;
|