V10.542 拆分可用比價覆蓋率口徑

This commit is contained in:
OoO
2026-06-01 10:01:48 +08:00
parent 7e057435c5
commit 4bc271f7ed
16 changed files with 57 additions and 10 deletions

View File

@@ -343,6 +343,10 @@
</div>
<div class="card-body">
<div class="daily-competitor-summary">
<div>
<span>可用比價覆蓋率</span>
<strong class="momo-mono">{{ comp_coverage.decision_ready_rate | default(0) }}%</strong>
</div>
<div>
<span>身份配對</span>
<strong class="momo-mono">{{ comp_coverage.valid_matches | default(0) | number_format }}</strong>
@@ -353,7 +357,7 @@
</div>
<div>
<span>價格新鮮</span>
<strong class="momo-mono">{{ comp_coverage.fresh_matches | default(0) | number_format }}</strong>
<strong class="momo-mono">{{ comp_coverage.decision_ready_matches | default(comp_coverage.fresh_matches | default(0)) | number_format }}</strong>
</div>
<div>
<span>價格過期</span>

View File

@@ -17,11 +17,11 @@
</div>
<div class="dashboard-kpi-grid">
<div class="dashboard-kpi">
<div class="dashboard-kpi-label momo-mono">身份覆蓋率</div>
<div class="dashboard-kpi-value momo-mono">{{ overview.match_rate | default(0) }}%</div>
<div class="dashboard-kpi-label momo-mono">可用比價覆蓋率</div>
<div class="dashboard-kpi-value momo-mono">{{ overview.decision_ready_rate | default(0) }}%</div>
<div class="dashboard-kpi-sub momo-mono">
{{ overview.matched_count | default(0) | number_format }} / {{ overview.total_active | default(total_products) | number_format }} ACTIVE
· 新鮮 {{ overview.fresh_match_count | default(0) | number_format }}
{{ overview.decision_ready_count | default(0) | number_format }} / {{ overview.total_active | default(total_products) | number_format }} ACTIVE
· 身份 {{ overview.match_rate | default(0) }}%
· 過期 {{ overview.stale_match_count | default(0) | number_format }}
</div>
</div>

View File

@@ -141,6 +141,8 @@
<div class="ga-competitor-quality">
<span>高信心門檻</span>
<strong class="momo-mono">{{ coverage.match_score_floor | default(0.76) }}</strong>
<span>可用比價覆蓋率</span>
<strong class="momo-mono">{{ coverage.decision_ready_rate | default(0) }}%</strong>
<span>身份配對</span>
<strong class="momo-mono">{{ coverage.valid_matches | default(0) | number_format }}</strong>
<span>身份覆蓋率</span>