Compare commits

..

1 Commits

Author SHA1 Message Date
linkeyu 6281ba81da 修复:补齐纯展示广告明细类型字段
在纯展示明细中透传广告网络和广告位字段,满足 AdRevenueRecord 的必填类型要求,恢复生产构建。
2026-07-27 14:04:08 +08:00
2 changed files with 0 additions and 9 deletions
@@ -298,14 +298,6 @@ export default function ComparisonRecordsPage() {
<b style={{ color: r.saved_amount_cents > 0 ? '#3f8600' : '#999' }}>{yuan(r.saved_amount_cents)}</b>
),
},
{
title: '是否下单',
dataIndex: 'ordered',
width: 84,
render: (ordered: boolean) => (
<Tag color={ordered ? 'green' : 'default'}>{ordered ? '已下单' : '未下单'}</Tag>
),
},
{ title: 'LLM', dataIndex: 'llm_call_count', width: 56, render: (v) => v ?? '-' },
{
title: 'TOKEN',
-1
View File
@@ -449,7 +449,6 @@ 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;