diff --git a/src/app/(main)/comparison-records/page.tsx b/src/app/(main)/comparison-records/page.tsx
index be8cd7f..22a8503 100644
--- a/src/app/(main)/comparison-records/page.tsx
+++ b/src/app/(main)/comparison-records/page.tsx
@@ -298,6 +298,14 @@ export default function ComparisonRecordsPage() {
0 ? '#3f8600' : '#999' }}>{yuan(r.saved_amount_cents)}
),
},
+ {
+ title: '是否下单',
+ dataIndex: 'ordered',
+ width: 84,
+ render: (ordered: boolean) => (
+ {ordered ? '已下单' : '未下单'}
+ ),
+ },
{ title: 'LLM', dataIndex: 'llm_call_count', width: 56, render: (v) => v ?? '-' },
{
title: 'TOKEN',
diff --git a/src/lib/types.ts b/src/lib/types.ts
index 307284f..7dfb737 100644
--- a/src/lib/types.ts
+++ b/src/lib/types.ts
@@ -449,6 +449,7 @@ export interface ComparisonRecordListItem {
source_price_cents: number | null;
best_price_cents: number | null;
saved_amount_cents: number | null;
+ ordered: boolean;
total_ms: number | null;
step_count: number | null;
llm_call_count: number | null;