新增管道冲洗页面

This commit is contained in:
JIANG
2026-02-05 11:59:23 +08:00
parent 4bd7b48bcf
commit f89e43eee2
2 changed files with 19 additions and 0 deletions

View File

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

View File

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