From 97bbd47e3c237eba80adcaff49cf663d2f0d06e3 Mon Sep 17 00:00:00 2001 From: xudan Date: Fri, 5 Dec 2025 10:16:14 +0800 Subject: [PATCH] =?UTF-8?q?feat(area-detail-card):=20=E4=B8=BA=E9=97=A8?= =?UTF-8?q?=E5=8C=BA=E5=9F=9F=E8=AF=A6=E6=83=85=E5=8D=A1=E7=89=87=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E8=BF=9E=E6=8E=A5=E7=8A=B6=E6=80=81=E5=92=8C=E9=97=A8?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E6=B7=BB=E5=8A=A0=E5=BE=BD=E7=AB=A0=E3=80=81?= =?UTF-8?q?=E6=A0=87=E7=AD=BE=E5=8F=8A=E5=8A=A8=E7=94=BB=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=EF=BC=8C=E4=BB=A5=E6=8F=90=E5=8D=87=E7=8A=B6=E6=80=81=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E7=9A=84=E8=A7=86=E8=A7=89=E8=A1=A8=E7=8E=B0=E5=8A=9B?= =?UTF-8?q?=E5=92=8C=E4=BA=A4=E4=BA=92=E4=BD=93=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/card/area-detail-card.vue | 140 ++++++++++++++++++++++- 1 file changed, 134 insertions(+), 6 deletions(-) diff --git a/src/components/card/area-detail-card.vue b/src/components/card/area-detail-card.vue index 527c6e2..a49c935 100644 --- a/src/components/card/area-detail-card.vue +++ b/src/components/card/area-detail-card.vue @@ -180,17 +180,46 @@ watch(area, (newArea) => { {{ $t('连接状态') }} - {{ - isConnected === true ? $t('已连接') : isConnected === false ? $t('未连接') : $t('无') - }} + + + + + {{ isConnected === true ? $t('在线') : $t('离线') }} + + + {{ $t('门状态') }} - - {{ doorStatus === 1 ? $t('开门') : doorStatus === 0 ? $t('关门') : $t('无') }} - + + + {{ doorStatus === 1 ? $t('开门') : doorStatus === 0 ? $t('关门') : $t('无') }} + + @@ -210,3 +239,102 @@ watch(area, (newArea) => { + +