2026-04-18 16:40:04 +08:00
|
|
|
<template>
|
|
|
|
|
<!-- 医院 -->
|
|
|
|
|
<HospitalComponent
|
|
|
|
|
v-if="
|
|
|
|
|
useStatusStore().appLoadingCompleted &&
|
|
|
|
|
useStatusStore().poiLayers.showHospital.loading
|
|
|
|
|
"
|
|
|
|
|
/>
|
2026-04-18 19:03:06 +08:00
|
|
|
|
|
|
|
|
<!-- 危险源 -->
|
|
|
|
|
<DangerousSourceComponent
|
|
|
|
|
v-if="
|
|
|
|
|
useStatusStore().appLoadingCompleted &&
|
|
|
|
|
useStatusStore().poiLayers.showDangerSource.loading
|
|
|
|
|
"
|
|
|
|
|
/>
|
2026-04-18 20:10:54 +08:00
|
|
|
|
|
|
|
|
<!-- 避难所 -->
|
|
|
|
|
<EmergencyShelterComponent
|
|
|
|
|
v-if="
|
|
|
|
|
useStatusStore().appLoadingCompleted &&
|
|
|
|
|
useStatusStore().poiLayers.showRefugeeShelter.loading
|
|
|
|
|
"
|
|
|
|
|
/>
|
2026-04-18 20:48:01 +08:00
|
|
|
|
|
|
|
|
<!-- 消防站 -->
|
|
|
|
|
<FireStationComponent
|
|
|
|
|
v-if="
|
|
|
|
|
useStatusStore().appLoadingCompleted &&
|
|
|
|
|
useStatusStore().poiLayers.showFireStation.loading
|
|
|
|
|
"
|
|
|
|
|
/>
|
2026-04-18 22:35:49 +08:00
|
|
|
|
|
|
|
|
<!-- 物资储备点 -->
|
|
|
|
|
<StorePointsComponent
|
|
|
|
|
v-if="
|
|
|
|
|
useStatusStore().appLoadingCompleted &&
|
|
|
|
|
useStatusStore().poiLayers.showReservePoint.loading
|
|
|
|
|
"
|
|
|
|
|
/>
|
2026-04-21 15:49:56 +08:00
|
|
|
|
2026-04-21 20:56:25 +08:00
|
|
|
<!-- 学校 -->
|
|
|
|
|
<SchoolComponent
|
|
|
|
|
v-if="
|
|
|
|
|
useStatusStore().appLoadingCompleted &&
|
|
|
|
|
useStatusStore().poiLayers.showSchool.loading
|
|
|
|
|
"
|
|
|
|
|
/>
|
|
|
|
|
|
2026-04-21 15:49:56 +08:00
|
|
|
<!-- 人口网格 -->
|
|
|
|
|
<PopulationGridComponent
|
|
|
|
|
v-if="
|
|
|
|
|
useStatusStore().appLoadingCompleted &&
|
|
|
|
|
useStatusStore().poiLayers.showPopulationGrid.loading
|
|
|
|
|
"
|
|
|
|
|
/>
|
2026-04-21 16:05:26 +08:00
|
|
|
|
|
|
|
|
<!-- 管网系统 -->
|
|
|
|
|
<WaterPipeComponent
|
|
|
|
|
v-if="
|
|
|
|
|
useStatusStore().appLoadingCompleted &&
|
|
|
|
|
useStatusStore().infrastructureLayers.showNetworkSystem.loading
|
|
|
|
|
"
|
|
|
|
|
/>
|
2026-04-24 20:41:41 +08:00
|
|
|
|
|
|
|
|
<!-- 交通道路 -->
|
|
|
|
|
<TrafficRoadComponent
|
|
|
|
|
v-if="
|
|
|
|
|
useStatusStore().appLoadingCompleted &&
|
|
|
|
|
useStatusStore().infrastructureLayers.showTrafficRoad.loading
|
|
|
|
|
"
|
|
|
|
|
/>
|
2026-04-18 16:40:04 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2026-04-21 19:50:57 +08:00
|
|
|
import { useStatusStore } from '@/stores/useStatusStore.ts';
|
|
|
|
|
import HospitalComponent from './detail-panels/HospitalComponent.vue';
|
|
|
|
|
import DangerousSourceComponent from './detail-panels/DangerousSourceComponent.vue';
|
|
|
|
|
import EmergencyShelterComponent from './detail-panels/EmergencyShelterComponent.vue';
|
|
|
|
|
import FireStationComponent from './detail-panels/FireStationComponent.vue';
|
|
|
|
|
import StorePointsComponent from './detail-panels/StorePointsComponent.vue';
|
|
|
|
|
import PopulationGridComponent from './detail-panels/PopulationGridComponent.vue';
|
|
|
|
|
import WaterPipeComponent from './detail-panels/WaterPipeComponent.vue';
|
2026-04-21 20:56:25 +08:00
|
|
|
import SchoolComponent from './detail-panels/SchoolComponent.vue';
|
2026-04-24 20:41:41 +08:00
|
|
|
import TrafficRoadComponent from '@/component/rain-earthquake/detail-panels/TrafficRoadComponent.vue';
|
2026-04-18 16:40:04 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="less"></style>
|