2025-01-23 01:10:59 +00:00
|
|
|
import Layout from '@/layouts/index.vue';
|
|
|
|
import Views from '@/layouts/Views.vue';
|
|
|
|
|
|
|
|
export default [
|
|
|
|
{
|
|
|
|
path: '/resource',
|
|
|
|
name: 'resource',
|
|
|
|
component: Layout,
|
|
|
|
redirect: '/resource-map',
|
|
|
|
meta: { title: '土地资源管理管理', icon: 'icon-test' },
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: '/resource-map',
|
|
|
|
component: () => import('@/views/resource/map/index.vue'),
|
|
|
|
name: 'resource-map',
|
|
|
|
meta: { title: '土地资源一张图', icon: 'Document' },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/resource-info',
|
|
|
|
name: 'resource-info-manager',
|
|
|
|
component: Views,
|
|
|
|
meta: { title: '土地信息管理', icon: 'Document' },
|
|
|
|
redirect: '/land',
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: '/land',
|
|
|
|
component: () => import('@/views/resource/land/index.vue'),
|
|
|
|
name: 'land',
|
|
|
|
meta: { title: '土地资源', icon: 'Document' },
|
|
|
|
},
|
2025-02-14 01:48:22 +00:00
|
|
|
// {
|
|
|
|
// path: '/land-fill',
|
|
|
|
// name: 'land-fill',
|
|
|
|
// component: () => import('@/views/resource/land/index.vue'),
|
|
|
|
// meta: { title: '土地信息填报审核', icon: 'Document' },
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// path: '/land-fill-review',
|
|
|
|
// name: 'land-fill-review',
|
|
|
|
// component: () => import('@/views/resource/land/index.vue'),
|
|
|
|
// meta: { title: '土地流转信息填报审核', icon: 'Document' },
|
|
|
|
// },
|
2025-01-23 01:10:59 +00:00
|
|
|
],
|
|
|
|
},
|
2025-02-14 01:48:22 +00:00
|
|
|
// {
|
|
|
|
// path: '/land-monitor',
|
|
|
|
// name: 'land-monitor',
|
|
|
|
// component: Views,
|
|
|
|
// meta: { title: '土地监管', icon: 'Document' },
|
|
|
|
// redirect: '/land-patrol',
|
|
|
|
// children: [
|
|
|
|
// {
|
|
|
|
// path: '/land-patrol',
|
|
|
|
// component: () => import('@/views/resource/land/index.vue'),
|
|
|
|
// name: 'land-patrol',
|
|
|
|
// meta: { title: '土地使用巡查', icon: 'Document' },
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// path: '/land-handle',
|
|
|
|
// name: 'land-handle',
|
|
|
|
// component: () => import('@/views/resource/land/index.vue'),
|
|
|
|
// meta: { title: '土地违法处理', icon: 'Document' },
|
|
|
|
// },
|
|
|
|
// ],
|
|
|
|
// },
|
2025-01-23 01:10:59 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
];
|