feat(platform): surface archive gap actions
This commit is contained in:
@@ -190,6 +190,15 @@ export function Dashboard({ onOpenVehicle, onOpenQuality, onOpenVehicles }: { on
|
||||
detail: '车辆缺少车牌、手机号或 OEM 等基础档案,影响后续运营查询和治理。'
|
||||
});
|
||||
}
|
||||
for (const field of serviceSummary?.archiveMissingFields ?? []) {
|
||||
if (field.count <= 0) continue;
|
||||
items.push({
|
||||
label: `补齐${field.title}`,
|
||||
count: field.count,
|
||||
filters: { archiveMissing: field.field },
|
||||
detail: `${field.title}会影响车辆档案检索、绑定确认和运营侧筛选。`
|
||||
});
|
||||
}
|
||||
for (const source of serviceSummary?.missingSources ?? []) {
|
||||
if (source.count <= 0) continue;
|
||||
items.push({
|
||||
|
||||
Reference in New Issue
Block a user