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