import Layout from '@/layouts/index.vue'; import Views from '@/layouts/Views.vue'; export default [ { path: '/plantingAndBreeding', name: 'plantingAndBreeding', component: Layout, redirect: '/planting', meta: { title: '种养殖管理', icon: 'icon-test' }, children: [ { path: '/planting', name: 'planting', component: Views, meta: { title: '种植档案', icon: 'Document' }, redirect: '/planting-archives', children: [ { path: '/planting-archives', component: () => import('@/views/trace/planting/archives.vue'), name: 'planting-archives', meta: { title: '基地档案', icon: 'Document' }, }, { path: '/planting-seed', component: () => import('@/views/trace/planting/seed.vue'), name: 'planting-seed', meta: { title: '种子档案', icon: 'Document' }, }, ], }, { path: '/breeding', name: 'breeding', component: Views, meta: { title: '农事管理', icon: 'Document' }, redirect: '/breeding-land', children: [], }, ], }, ];