fix: 车辆总数 1006 → 1004
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
kkfluous
2026-06-09 13:21:53 +08:00
parent a47faf66f0
commit 8dd5c27aaa
4 changed files with 7 additions and 7 deletions

View File

@@ -62,9 +62,9 @@ const ArtboardOverview = () => {
return c;
}, [vehicles]);
// Display-scale: 管理员视角下KPI 按实际车队规模放大到 1006 辆 / 892 在线
// Display-scale: 管理员视角下KPI 按实际车队规模放大到 1004 辆 / 892 在线
// (部门视角保持真实数字)
const FLEET_SIZE = 1006;
const FLEET_SIZE = 1004;
const FLEET_ONLINE = 892;
const scale = !isDeptScoped && scopedCounts.all > 0 ? FLEET_SIZE / scopedCounts.all : 1;
const sc = (n) => Math.round(n * scale);