+ {[
+ {
+ title: '里程统计',
+ value: `${formatKm(summary.totalMileageKm)} km`,
+ color: 'blue' as const,
+ detail: '每日里程、区间里程、异常差值和可审计证据。'
+ },
+ {
+ title: '在线率与离线时长',
+ value: currentVehicleKeyword ? '车辆维度' : '车队维度',
+ color: 'green' as const,
+ detail: '后续接入在线区间聚合,按 VIN 统计在线率、离线时间和无更新时长。'
+ },
+ {
+ title: '数据完整性',
+ value: confidenceStatus,
+ color: confidenceColor,
+ detail: '围绕位置、里程、SOC、速度和来源新鲜度判断统计可信度。'
+ },
+ {
+ title: '来源一致性',
+ value: sourceConsistencyText,
+ color: summary.sourceCount > 1 ? 'green' as const : 'orange' as const,
+ detail: 'GB32960、JT808、Yutong MQTT 只作为同一车辆服务的来源证据。'
+ }
+ ].map((item) => (
+
+
{item.title}
+
{item.value}
+
{item.detail}
+
+ ))}
+
+