27 lines
863 B
JavaScript
Raw Normal View History

2025-02-27 14:57:30 +08:00
import Layout from '@/layouts/index.vue';
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',
component: Layout,
2025-03-03 14:58:28 +08:00
redirect: '/sub-government-affairs-service/annualPlans',
2025-02-27 14:57:30 +08:00
meta: { title: '年度计划', icon: 'Document' },
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'),
meta: { title: '年度计划', icon: 'Document' },
},
{
2025-03-03 14:58:28 +08:00
path: '/sub-government-affairs-service/plantings',
2025-02-27 14:57:30 +08:00
name: 'plantings',
component: () => import('@/views/annualPlan/component/plantings/index.vue'),
meta: { title: '网格种植进度', icon: 'Document' },
},
],
},
];
export default annualplanRoutes;