60 lines
1.5 KiB
JavaScript
60 lines
1.5 KiB
JavaScript
import Layout from '@/layouts/index.vue';
|
|
|
|
export default {
|
|
path: '/v2',
|
|
name: 'v2',
|
|
component: Layout,
|
|
redirect: '/v2/home',
|
|
meta: { title: '首页', icon: '' },
|
|
children: [
|
|
{
|
|
path: '/v2/home',
|
|
component: () => import('@/views/home/index.vue'),
|
|
name: 'home',
|
|
meta: { title: '首页', icon: '' },
|
|
},
|
|
{
|
|
path: '/v2/land',
|
|
component: () => import('@/views/land/index.vue'),
|
|
name: 'land',
|
|
meta: { title: '土地资源', icon: '' },
|
|
},
|
|
{
|
|
path: 'inputs',
|
|
name: 'inputs',
|
|
component: () => import('@/views/inputs/index.vue'),
|
|
meta: { title: '投入品监管', icon: '' },
|
|
},
|
|
{
|
|
path: 'entities',
|
|
name: 'entities',
|
|
component: () => import('@/views/entities/index.vue'),
|
|
meta: { title: '产出品管理', icon: '' },
|
|
},
|
|
// {
|
|
// path: 'breed',
|
|
// name: 'breed',
|
|
// component: () => import('@/views/breed/index.vue'),
|
|
// meta: { title: '', icon: '' },
|
|
// },
|
|
// {
|
|
// path: 'plant',
|
|
// name: 'plant',
|
|
// component: () => import('@/views/plant/index.vue'),
|
|
// meta: { title: '', icon: '' },
|
|
// },
|
|
// {
|
|
// path: 'trace',
|
|
// name: 'trace',
|
|
// component: () => import('@/views/trace/index.vue'),
|
|
// meta: { title: '', icon: '' },
|
|
// },
|
|
// {
|
|
// path: 'early',
|
|
// name: 'early',
|
|
// component: () => import('@/views/early/index.vue'),
|
|
// meta: { title: '', icon: '' },
|
|
// },
|
|
],
|
|
};
|