feat 优化报警消息

This commit is contained in:
Ironsp
2026-06-11 08:48:25 +08:00
parent ac997998e1
commit 7f9d9ed8bd
2 changed files with 2 additions and 6 deletions

View File

@@ -63,11 +63,11 @@ const warningListStore = useWarningListStore();
const noticeStore = useNoticeStore();
const props = defineProps<{
warningList?: any[];
warningList: any;
}>();
const { warningList } = toRefs(props);
const warningListRows = computed(() => warningList.value?.rows || []);
console.log('666666666666666666_warningListRows', warningListRows.value);
// console.log('666666666666666666_warningListRows', warningListRows.value);
const { readAll } = useNoticeStore();
const monitorVideoRef = ref<HTMLVideoElement>();