爆管分析、水质模拟模块分离;调整sidebar

This commit is contained in:
JIANG
2026-02-05 11:56:42 +08:00
parent 9bb0f8dcd7
commit 5b52afcc53
8 changed files with 360 additions and 149 deletions

View File

@@ -0,0 +1,5 @@
import { MapSkeleton } from "@components/loading/MapSkeleton";
export default function Loading() {
return <MapSkeleton />;
}

View File

@@ -0,0 +1,16 @@
"use client";
import MapComponent from "@app/OlMap/MapComponent";
import MapToolbar from "@app/OlMap/Controls/Toolbar";
import WaterQualityPanel from "@/components/olmap/ContaminantSimulation/WaterQualityPanel";
export default function Home() {
return (
<div className="relative w-full h-full overflow-hidden">
<MapComponent>
<MapToolbar queryType="scheme" />
<WaterQualityPanel />
</MapComponent>
</div>
);
}