From 837b24383825c8f7b7ef10c11949181051214885 Mon Sep 17 00:00:00 2001 From: yangsy Date: Fri, 27 Feb 2026 14:14:07 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E7=89=88=E5=BD=95=E5=83=8F?= =?UTF-8?q?=E8=AF=8A=E6=96=AD=E5=8D=A1=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 按天聚合录像缺失片段,渲染为不同颜色 - 支持查看某天的录像缺失详情 --- .../components/current-diag/index.ts | 14 +- .../current-diag/nvr-record-check-card.vue | 646 ++++++++++++++++++ .../device-card/ndm-nvr/nvr-current-diag.vue | 6 +- 3 files changed, 664 insertions(+), 2 deletions(-) create mode 100644 src/components/device/device-card/components/current-diag/nvr-record-check-card.vue diff --git a/src/components/device/device-card/components/current-diag/index.ts b/src/components/device/device-card/components/current-diag/index.ts index e83f79b..265d85c 100644 --- a/src/components/device/device-card/components/current-diag/index.ts +++ b/src/components/device/device-card/components/current-diag/index.ts @@ -2,10 +2,22 @@ import DeviceCommonCard from './device-common-card.vue'; import DeviceHardwareCard from './device-hardware-card.vue'; import DeviceHeaderCard from './device-header-card.vue'; import NvrDiskCard from './nvr-disk-card.vue'; +import NvrRecordCheckCard from './nvr-record-check-card.vue'; import SecurityBoxCircuitCard from './security-box-circuit-card.vue'; import SecurityBoxCircuitLinkModal from './security-box-circuit-link-modal.vue'; import SecurityBoxEnvCard from './security-box-env-card.vue'; import SwitchPortCard from './switch-port-card.vue'; import SwitchPortLinkModal from './switch-port-link-modal.vue'; -export { DeviceCommonCard, DeviceHardwareCard, DeviceHeaderCard, NvrDiskCard, SecurityBoxCircuitCard, SecurityBoxCircuitLinkModal, SecurityBoxEnvCard, SwitchPortCard, SwitchPortLinkModal }; +export { + DeviceCommonCard, + DeviceHardwareCard, + DeviceHeaderCard, + NvrDiskCard, + NvrRecordCheckCard, + SecurityBoxCircuitCard, + SecurityBoxCircuitLinkModal, + SecurityBoxEnvCard, + SwitchPortCard, + SwitchPortLinkModal, +}; diff --git a/src/components/device/device-card/components/current-diag/nvr-record-check-card.vue b/src/components/device/device-card/components/current-diag/nvr-record-check-card.vue new file mode 100644 index 0000000..81a6e12 --- /dev/null +++ b/src/components/device/device-card/components/current-diag/nvr-record-check-card.vue @@ -0,0 +1,646 @@ + + + + + + + diff --git a/src/components/device/device-card/ndm-nvr/nvr-current-diag.vue b/src/components/device/device-card/ndm-nvr/nvr-current-diag.vue index a380945..59b46fc 100644 --- a/src/components/device/device-card/ndm-nvr/nvr-current-diag.vue +++ b/src/components/device/device-card/ndm-nvr/nvr-current-diag.vue @@ -1,6 +1,7 @@