| | |
| | | import { defineStore } from 'pinia' |
| | | import { ref } from 'vue' |
| | | export const useSimStore = defineStore('simulation', () => { |
| | | // 断面数据 |
| | | const crossSection = ref([]) |
| | | const openDia = ref(true) |
| | | // 历史回放列表 |
| | | const rePlayList = ref([]) |
| | | // 北京市所有村的code |
| | |
| | | const DeviceShowSwitch = ref(false) |
| | | const DangerShowSwitch = ref(false) |
| | | const DangerPoint = ref([]) |
| | | // 泥位计 |
| | | const selectNWJ = ref() |
| | | // 监测设备列表 |
| | | const devices = ref([]) |
| | | const navigationShow = ref(true) |
| | |
| | | schemWaterInfo, |
| | | layerDate, |
| | | rePlayList, |
| | | selectNWJ, |
| | | openDia, |
| | | crossSection, |
| | | |
| | | // 方案相关方法 |
| | | setSchemCard, |