45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
|
import Layout from '@/layouts/index.vue';
|
||
|
|
||
|
const landsRoutes = [
|
||
|
{
|
||
|
path: '/landManage',
|
||
|
name: 'landManage',
|
||
|
component: Layout,
|
||
|
redirect: '/landsManage',
|
||
|
meta: { title: '土地管理', icon: 'Document' },
|
||
|
children: [
|
||
|
{
|
||
|
path: '/landsManage',
|
||
|
name: 'landsManage',
|
||
|
component: () => import('@/views/landManage/component/landsManage/index.vue'),
|
||
|
meta: { title: '土地管理', icon: 'Document' },
|
||
|
},
|
||
|
{
|
||
|
path: '/plantPlan',
|
||
|
name: 'plantPlan',
|
||
|
component: () => import('@/views/landManage/component/plantPlan/index.vue'),
|
||
|
meta: { title: '种植规划', icon: 'Document' },
|
||
|
},
|
||
|
{
|
||
|
path: '/landPartol',
|
||
|
name: 'landPartol',
|
||
|
component: () => import('@/views/landManage/component/landPartol/index.vue'),
|
||
|
meta: { title: '土地巡查', icon: 'Document' },
|
||
|
},
|
||
|
{
|
||
|
path: '/illegalHandle',
|
||
|
name: 'illegalHandle',
|
||
|
component: () => import('@/views/landManage/component/illegalHandle/index.vue'),
|
||
|
meta: { title: '土地违法处理', icon: 'Document' },
|
||
|
},
|
||
|
{
|
||
|
path: '/operationRecord',
|
||
|
name: 'operationRecord',
|
||
|
component: () => import('@/views/landManage/component/operationRecord/index.vue'),
|
||
|
meta: { title: '作业记录', icon: 'Document' },
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
];
|
||
|
export default landsRoutes;
|