27 lines
863 B
JavaScript
27 lines
863 B
JavaScript
import Layout from '@/layouts/index.vue';
|
|
|
|
const annualplanRoutes = [
|
|
{
|
|
path: '/sub-government-affairs-service/annualPlan',
|
|
name: 'annualPlan',
|
|
component: Layout,
|
|
redirect: '/sub-government-affairs-service/annualPlans',
|
|
meta: { title: '年度计划', icon: 'Document' },
|
|
children: [
|
|
{
|
|
path: '/sub-government-affairs-service/annualPlans',
|
|
name: 'annualPlans',
|
|
component: () => import('@/views/annualPlan/component/annualPlans/index.vue'),
|
|
meta: { title: '年度计划', icon: 'Document' },
|
|
},
|
|
{
|
|
path: '/sub-government-affairs-service/plantings',
|
|
name: 'plantings',
|
|
component: () => import('@/views/annualPlan/component/plantings/index.vue'),
|
|
meta: { title: '网格种植进度', icon: 'Document' },
|
|
},
|
|
],
|
|
},
|
|
];
|
|
export default annualplanRoutes;
|