🌡️ 温湿度监控系统
{{ user.realName || user.username }} ({{ roleLabel }})
📊 实时看板
📱 设备管理
🔔 告警管理
📈 历史数据
👥 用户管理
⚙️ 系统设置
总设备
{{ stats.total }}
在线
{{ stats.online }}
告警
{{ stats.alarm }}
{{ dev.name || dev.sn }} {{ dev.status === 'online' ? '🟢' : dev.status === 'alarm' ? '🔴' : '⚪' }}
{{ dev.temperature ?? '--' }}°C
{{ dev.humidity ?? '--' }}%RH
{{ dev.location || ('楼层' + dev.floor) }}

🔔 最新告警

{{ a.level==='critical'?'🔴':a.level==='warning'?'🟡':'🔵' }} {{ a.device_name }} {{ a.message }} {{ formatTime(a.created_at) }}
SN名称楼层通信状态 温度湿度最后在线操作
{{ dev.sn }} {{ dev.name }} {{ dev.floor }} {{ dev.comm_type }} {{ dev.status === 'online' ? '在线' : dev.status === 'alarm' ? '告警' : '离线' }} {{ dev.temperature ?? '--' }}°C {{ dev.humidity ?? '--' }}% {{ dev.last_online_at ? formatTime(dev.last_online_at) : '--' }}
时间设备类型值/阈值等级状态操作
{{ formatTime(a.created_at) }} {{ a.device_name }} {{ alarmTypeLabel(a.type) }} {{ a.value }} / {{ a.threshold }} {{ a.level }} {{ alarmStatusLabel(a.status) }}
用户名姓名角色状态最后登录操作
{{ u.username }} {{ u.real_name }} {{ u.role }} {{ u.disabled ? '已禁用' : '正常' }} {{ u.last_login_at ? formatTime(u.last_login_at) : '--' }}