危险源点

This commit is contained in:
wzy-warehouse
2026-04-18 19:03:06 +08:00
parent f3fd716352
commit ad3ffe91b0
15 changed files with 319 additions and 8 deletions
+9 -1
View File
@@ -21,5 +21,13 @@ export const useLayerControl = () => {
useStatusStore().poiLayers.showHospital.loading = true;
};
return { clickHiddenDangerPoint, clickHospital };
/**
* 点击显示危险源
*/
const clickDangerousSource = () => {
// 加载状态为true
useStatusStore().poiLayers.showDangerSource.loading = true;
};
return { clickHiddenDangerPoint, clickHospital, clickDangerousSource };
};