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