feat 优化报警消息暂存

This commit is contained in:
Ironsp
2026-06-11 09:28:46 +08:00
parent 7f9d9ed8bd
commit 159d53080a
5 changed files with 45 additions and 15 deletions

View File

@@ -133,6 +133,11 @@ import { listDemo, updateDemo } from '@/api/WarningList/index';
//import { DemoVO, DemoQuery, DemoForm } from '@/api/WarningList/types';
import { useDeviceStore } from '@/store/modules/equipmentList';
import { storeToRefs } from 'pinia';
import { useWarningListStore } from '@/store/modules/warnningList';
const warningListStore = useWarningListStore();
const { getWarningList, hanldeAction } = warningListStore;
const { warningListTotal, warningList } = storeToRefs(warningListStore);
const deviceStore = useDeviceStore();
const { deviceList } = storeToRefs(deviceStore);