diff --git a/src/app/(main)/network-simulation/page.tsx b/src/app/(main)/network-simulation/page.tsx index 281b54d..8d1c9ef 100644 --- a/src/app/(main)/network-simulation/page.tsx +++ b/src/app/(main)/network-simulation/page.tsx @@ -9,32 +9,39 @@ import SCADADataPanel from "@components/olmap/SCADADataPanel"; const mockDevices = [ { id: "SCADA-001", - name: "进水口压力", + name: "SCADA-001", type: "pressure", coordinates: [121.4737, 31.2304] as [number, number], status: "online" as const, }, { id: "SCADA-002", - name: "二泵站流量", + name: "SCADA-002", type: "flow", coordinates: [121.4807, 31.2204] as [number, number], status: "warning" as const, }, { id: "SCADA-003", - name: "管网节点 A", + name: "SCADA-003", type: "pressure", coordinates: [121.4607, 31.2354] as [number, number], status: "offline" as const, }, { id: "SCADA-004", - name: "管网节点 B", + name: "SCADA-004", type: "demand", coordinates: [121.4457, 31.2104] as [number, number], status: "online" as const, }, + { + id: "SCADA-005", + name: "SCADA-005", + type: "level", + coordinates: [121.4457, 31.2104] as [number, number], + status: "online" as const, + }, ]; export default function Home() {