提交1 bmad搭建与项目启动 - ok
This commit is contained in:
48
crop-x/src/router/modules/land.tsx
Normal file
48
crop-x/src/router/modules/land.tsx
Normal file
@@ -0,0 +1,48 @@
|
||||
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 />
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user