diff --git a/src/views/DeviceDetailView/DeviceDetailView.vue b/src/views/DeviceDetailView/DeviceDetailView.vue
index 9c7d495..572a2cf 100644
--- a/src/views/DeviceDetailView/DeviceDetailView.vue
+++ b/src/views/DeviceDetailView/DeviceDetailView.vue
@@ -216,11 +216,7 @@
| 告警时间 | 告警编码 | 告警内容 | 级别 | 状态 | 恢复时间 |
@@ -336,6 +332,11 @@ const activeTab = ref('overview')
const logs = ref([])
const alarmRecords = ref([])
const alarmStatusFilter = ref('')
+const alarmStatusOptions = [
+ { label: '全部告警状态', value: '' },
+ { label: '未恢复', value: 'active' },
+ { label: '已恢复', value: 'resolved' }
+]
const editDockVisible = ref(false)
const record = computed(() => devices.record(route.params.id))