feat(platform): add history delivery readiness

This commit is contained in:
lingniu
2026-07-05 23:49:23 +08:00
parent fbd9982427
commit 7a02bf2c87
3 changed files with 147 additions and 0 deletions

View File

@@ -7544,6 +7544,12 @@ test('shows parsed field history as a flattened evidence table', async () => {
expect(screen.getByText('车辆历史服务台')).toBeInTheDocument();
expect(screen.getByText('客户证据包交付总览')).toBeInTheDocument();
expect(screen.getByText('先给客户一个结论:当前筛选能交付哪些证据、还缺哪一类证据、下一步应该导出还是补查。')).toBeInTheDocument();
expect(screen.getByText('客户交付准备度')).toBeInTheDocument();
expect(screen.getByText('把一次历史查询收敛成四个交付判断:范围是否锁定、轨迹是否可用、字段是否裁剪、说明是否可复制。')).toBeInTheDocument();
expect(screen.getByRole('button', { name: '客户交付准备度 范围已锁定 VIN-FIELDS-001 查看范围' })).toBeInTheDocument();
expect(screen.getByRole('button', { name: '客户交付准备度 轨迹待补 0 点 查询轨迹' })).toBeInTheDocument();
expect(screen.getByRole('button', { name: '客户交付准备度 字段已裁剪 2 字段 字段导出' })).toBeInTheDocument();
expect(screen.getByRole('button', { name: '客户交付准备度 说明可复制 可交付 复制说明' })).toBeInTheDocument();
expect(screen.getByRole('button', { name: '客户证据包交付总览 交付范围 VIN-FIELDS-001 / GB32960 查看范围' })).toBeInTheDocument();
expect(screen.getByRole('button', { name: '客户证据包交付总览 轨迹证据 0 点 查询轨迹' })).toBeInTheDocument();
expect(screen.getByRole('button', { name: '客户证据包交付总览 明细字段 2 字段 字段导出' })).toBeInTheDocument();