diff --git a/src/components/device-page/device-card/current-diag-card/security-box-info-card.vue b/src/components/device-page/device-card/current-diag-card/security-box-info-card.vue index 674f793..6e04c6e 100644 --- a/src/components/device-page/device-card/current-diag-card/security-box-info-card.vue +++ b/src/components/device-page/device-card/current-diag-card/security-box-info-card.vue @@ -17,7 +17,7 @@ const cardShow = computed(() => { return Object.values(props).some((value) => !!value); }); -// 门禁状态 (switches[0]: 0=关闭/失效, 1=打开/生效) +// 门禁状态 (switches[0]: 0=打开/生效, 1=关闭/失效) const accessControlStatus = computed(() => { if (!switches?.value || switches.value.length === 0) return null; return switches.value[0] === 0 ? '打开' : '关闭';