48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
import { LandEntry } from '@/pages/land/LandEntry'
|
|
import { LandArchiveManagement } from '@/pages/land/LandArchiveManagement'
|
|
import { LandClassification } from '@/pages/land/LandClassification'
|
|
import { MapManagement } from '@/pages/land/MapManagement'
|
|
import { SpatialAnalysis } from '@/pages/land/SpatialAnalysis'
|
|
import { SuitabilityEvaluation } from '@/pages/land/SuitabilityEvaluation'
|
|
import { ComparativeAnalysis } from '@/pages/land/ComparativeAnalysis'
|
|
import { RiskWarning } from '@/pages/land/RiskWarning'
|
|
|
|
export const landRoutes = [
|
|
{
|
|
path: 'land',
|
|
children: [
|
|
{
|
|
index: true,
|
|
element: <LandEntry />
|
|
},
|
|
{
|
|
path: 'archive-management',
|
|
element: <LandArchiveManagement />
|
|
},
|
|
{
|
|
path: 'classification',
|
|
element: <LandClassification />
|
|
},
|
|
{
|
|
path: 'map-management',
|
|
element: <MapManagement />
|
|
},
|
|
{
|
|
path: 'spatial-analysis',
|
|
element: <SpatialAnalysis />
|
|
},
|
|
{
|
|
path: 'suitability-evaluation',
|
|
element: <SuitabilityEvaluation />
|
|
},
|
|
{
|
|
path: 'comparative-analysis',
|
|
element: <ComparativeAnalysis />
|
|
},
|
|
{
|
|
path: 'risk-warning',
|
|
element: <RiskWarning />
|
|
}
|
|
]
|
|
}
|
|
] |