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) => {
+
+