fix(scheduling): rename 日均→客户日均 to avoid ambiguity
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
kkfluous
2026-04-16 23:07:49 +08:00
parent ceed067807
commit dfc32c4485

View File

@@ -108,7 +108,7 @@ export default function SuggestionList({ suggestions, onSelect }: Props) {
<span className="truncate"><Blur>{v.customer || '-'}</Blur></span>
</div>
<div className="flex items-center gap-2 flex-shrink-0 ml-2">
<span className="text-slate-500"> <span className="text-slate-700 font-medium">{Math.round(v.customerAvgDaily)}</span></span>
<span className="text-slate-500"> <span className="text-slate-700 font-medium">{Math.round(v.customerAvgDaily)}</span></span>
<span className={`font-medium ${v.completionRate >= 1 ? 'text-emerald-600' : v.completionRate >= 0.5 ? 'text-amber-600' : 'text-rose-500'}`}>{fmtRate(v.completionRate)}</span>
</div>
</div>