监控页面增强:温度变化闪绿光、观测N分钟前、更新戳可见

- 每张卡片加"观测 X 分钟前"时间感知
- 温度值变化时卡片边框闪绿光(HTMX afterSwap 事件)
- 更新时间戳移入 HTMX 局部刷新区,30s 刷新可见
- CSS 加 obs-age 样式
This commit is contained in:
2569718930@qq.com
2026-05-13 19:58:19 +08:00
parent 538cc7db2d
commit 239c9c446d
5 changed files with 55 additions and 2 deletions
+1
View File
@@ -19,6 +19,7 @@ pub struct CitySnapshot {
pub temp_ok: bool,
pub trend_ok: bool,
pub in_window: bool,
pub obs_age_min: Option<i64>,
}
#[derive(Debug, Clone, Copy, Serialize)]