This commit is contained in:
yangsy
2025-08-26 04:20:44 +08:00
parent 9a050f08f6
commit b17e7b589a
4 changed files with 13 additions and 13 deletions

View File

@@ -5,6 +5,7 @@ import { useStationStore } from '@/stores/station';
import { storeToRefs } from 'pinia';
import { useLineDevicesStore } from '@/stores/line-devices';
import { useLineAlarmsStore } from '@/stores/line-alarms';
import { useLineAlarmsQuery, useLineDevicesQuery } from '@/composables/query';
const stationStore = useStationStore();
const { stationList } = storeToRefs(stationStore);
@@ -12,6 +13,9 @@ const lineDevicesStore = useLineDevicesStore();
const { lineDevices } = storeToRefs(lineDevicesStore);
const lineAlarmsStore = useLineAlarmsStore();
const { lineAlarms } = storeToRefs(lineAlarmsStore);
useLineDevicesQuery();
useLineAlarmsQuery();
</script>
<template>