V10.565 補比價覆蓋率操作建議

This commit is contained in:
OoO
2026-06-01 21:48:59 +08:00
parent 3ca0f742f7
commit 6cf2d23521
6 changed files with 101 additions and 1 deletions

View File

@@ -327,6 +327,8 @@ let priceChartInstance = null;
const staleRecoveryText = staleRecoveryAvailable
? ` · 可救援 ${formatBackfillLimitedCount(staleRecovery.candidate_count, staleRecovery.has_more)}`
: '';
const recommended = coverage.recommended_next_action || {};
const recommendedText = recommended.label ? ` · 建議 ${recommended.label}` : '';
return (
`可用比價 ${formatBackfillRate(coverage.decision_ready_rate)}`
+ ` · 身份 ${formatBackfillRate(coverage.match_rate)}`
@@ -336,6 +338,7 @@ let priceChartInstance = null;
+ previewText
+ reviewGatedText
+ staleRecoveryText
+ recommendedText
);
}