27 lines
884 B
JavaScript
Raw Normal View History

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-05-15 15:15:40 +08:00
// {
// path: '/sub-government-affairs-service/annualPlans',
// name: 'annualPlans',
// component: () => import('@/views/annualPlan/component/annualPlans/index.vue'),
// meta: { title: '年度种植计划', icon: '' },
// },
2025-02-27 14:57:30 +08:00
{
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-06-05 17:40:58 +08:00
meta: { title: '年度种植计划&实际', icon: 'Memo' },
2025-02-27 14:57:30 +08:00
},
],
},
];
export default annualplanRoutes;