|
@@ -9,6 +9,8 @@
|
|
|
<script setup>
|
|
|
import { ref, onMounted } from 'vue'
|
|
|
import {setDistrictResult} from "@/utils/map/AddLayer.js";
|
|
|
+import {useEventInteractionStore} from "@/store/eventInteraction.js";
|
|
|
+const eventInteractionStore = useEventInteractionStore()
|
|
|
|
|
|
// 公共路径
|
|
|
const basePath = '../../../../../assets/img/'
|
|
@@ -98,6 +100,7 @@ const selectTool = name => {
|
|
|
"count": 36
|
|
|
}]
|
|
|
setDistrictResult(activeTool.value === "色阶图", data)
|
|
|
+ eventInteractionStore.isDangerStatistic = activeTool.value !== "色阶图"
|
|
|
}
|
|
|
}
|
|
|
|