26 lines
929 B
JavaScript
26 lines
929 B
JavaScript
import Layout from '@/layouts/index.vue';
|
|
|
|
export default [
|
|
{
|
|
path: '/sub-government-affairs-service/plantingAndBreeding',
|
|
name: 'plantingAndBreeding',
|
|
component: Layout,
|
|
redirect: '/sub-government-affairs-service/breeding-base-information',
|
|
meta: { title: '种养植综合管理', icon: 'Document' },
|
|
children: [
|
|
{
|
|
path: '/sub-government-affairs-service/environment-monitor',
|
|
name: 'environment-monitor',
|
|
component: () => import('@/views/plantingAndBreeding/environment/index.vue'),
|
|
meta: { title: '环境监测信息', icon: 'Document' },
|
|
},
|
|
// {
|
|
// path: '/sub-government-affairs-service/breeding-base-information',
|
|
// name: 'breeding-base-information',
|
|
// component: () => import('@/views/plantingAndBreeding/base/index.vue'),
|
|
// meta: { title: '种养殖基地信息', icon: 'Document' },
|
|
// },
|
|
],
|
|
},
|
|
];
|