diff --git a/vehicle-data-platform/apps/web/src/styles/global.css b/vehicle-data-platform/apps/web/src/styles/global.css
index 77d3f3f8..ab8e6364 100644
--- a/vehicle-data-platform/apps/web/src/styles/global.css
+++ b/vehicle-data-platform/apps/web/src/styles/global.css
@@ -10765,6 +10765,108 @@ button.vp-realtime-command-item:focus-visible {
white-space: nowrap;
}
+.vp-history-next-export-strip {
+ margin-top: 12px;
+ border: 1px solid rgba(45, 136, 255, 0.18);
+ border-radius: var(--vp-radius);
+ background: #fff;
+ display: grid;
+ grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1.28fr) minmax(190px, 0.58fr);
+ overflow: hidden;
+}
+
+.vp-history-next-export-copy {
+ padding: 16px 18px;
+ border-right: 1px solid var(--vp-border);
+ background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
+ display: grid;
+ gap: 10px;
+ align-content: start;
+}
+
+.vp-history-next-export-grid {
+ padding: 12px;
+ display: grid;
+ grid-template-columns: repeat(4, minmax(0, 1fr));
+ gap: 10px;
+}
+
+.vp-history-next-export-item {
+ min-height: 112px;
+ padding: 12px;
+ border: 1px solid rgba(22, 100, 255, 0.12);
+ border-radius: 8px;
+ background: #fbfcff;
+ color: inherit;
+ cursor: pointer;
+ font: inherit;
+ text-align: left;
+ display: grid;
+ gap: 8px;
+ align-content: start;
+}
+
+.vp-history-next-export-item:hover,
+.vp-history-next-export-item:focus-visible,
+.vp-history-next-export-action:hover,
+.vp-history-next-export-action:focus-visible {
+ border-color: rgba(22, 100, 255, 0.42);
+ background: #f5f9ff;
+ box-shadow: var(--vp-shadow-sm);
+ outline: none;
+}
+
+.vp-history-next-export-item strong {
+ color: var(--vp-text);
+ font-size: 18px;
+ line-height: 24px;
+ word-break: break-word;
+}
+
+.vp-history-next-export-item span {
+ color: var(--vp-text-muted);
+ font-size: 12px;
+ line-height: 18px;
+ word-break: break-word;
+}
+
+.vp-history-next-export-actions {
+ padding: 12px;
+ border-left: 1px solid var(--vp-border);
+ background: #fafcff;
+ display: grid;
+ gap: 8px;
+}
+
+.vp-history-next-export-action {
+ min-height: 44px;
+ padding: 8px 10px;
+ border: 1px solid rgba(22, 100, 255, 0.13);
+ border-radius: 8px;
+ background: #fff;
+ color: inherit;
+ cursor: pointer;
+ font: inherit;
+ text-align: left;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ gap: 8px;
+}
+
+.vp-history-next-export-action:disabled {
+ cursor: not-allowed;
+ opacity: 0.62;
+}
+
+.vp-history-next-export-action span {
+ color: var(--vp-primary);
+ font-size: 12px;
+ font-weight: 700;
+ line-height: 18px;
+ white-space: nowrap;
+}
+
.vp-history-evidence-chain {
margin-top: 16px;
border: 1px solid rgba(22, 100, 255, 0.18);
@@ -13948,6 +14050,8 @@ button.vp-realtime-command-item:focus-visible {
.vp-trajectory-impact-grid,
.vp-history-delivery-conclusion-strip,
.vp-history-delivery-conclusion-metrics,
+ .vp-history-next-export-strip,
+ .vp-history-next-export-grid,
.vp-history-evidence-chain,
.vp-history-evidence-chain-grid,
.vp-trip-review-summary-grid,
@@ -14075,7 +14179,9 @@ button.vp-realtime-command-item:focus-visible {
}
.vp-history-delivery-conclusion-copy,
- .vp-history-delivery-conclusion-actions {
+ .vp-history-delivery-conclusion-actions,
+ .vp-history-next-export-copy,
+ .vp-history-next-export-actions {
border-left: 0;
border-right: 0;
border-bottom: 1px solid var(--vp-border);
diff --git a/vehicle-data-platform/apps/web/src/test/App.test.tsx b/vehicle-data-platform/apps/web/src/test/App.test.tsx
index d385dac8..a6f331c8 100644
--- a/vehicle-data-platform/apps/web/src/test/App.test.tsx
+++ b/vehicle-data-platform/apps/web/src/test/App.test.tsx
@@ -7649,6 +7649,16 @@ test('shows parsed field history as a flattened evidence table', async () => {
expect(screen.getByRole('button', { name: '客户数据交付动作 导出明细 明细CSV' })).toBeInTheDocument();
expect(screen.getByRole('button', { name: '客户数据交付动作 字段裁剪 字段CSV' })).toBeInTheDocument();
expect(screen.getByRole('button', { name: '客户数据交付动作 复制说明 交付包' })).toBeInTheDocument();
+ expect(screen.getByText('导出下一步行动条')).toBeInTheDocument();
+ expect(screen.getByText('当前查询先决定交付什么、缺什么、怎么复用,避免客户拿到一堆无解释 CSV。')).toBeInTheDocument();
+ expect(screen.getByRole('button', { name: '导出下一步行动 首要交付 字段证据' })).toBeInTheDocument();
+ expect(screen.getByRole('button', { name: '导出下一步行动 轨迹状态 待补轨迹' })).toBeInTheDocument();
+ expect(screen.getByRole('button', { name: '导出下一步行动 证据状态 1 帧 / 2 字段' })).toBeInTheDocument();
+ expect(screen.getByRole('button', { name: '导出下一步行动 说明状态 可交付' })).toBeInTheDocument();
+ expect(screen.getByRole('button', { name: '导出下一步动作 导出优先项 执行导出' })).toBeInTheDocument();
+ expect(screen.getByRole('button', { name: '导出下一步动作 补查轨迹 位置历史' })).toBeInTheDocument();
+ expect(screen.getByRole('button', { name: '导出下一步动作 复制说明 交付包' })).toBeInTheDocument();
+ expect(screen.getByRole('button', { name: '导出下一步动作 保存视图 复用' })).toBeInTheDocument();
expect(screen.getByText('车辆历史服务台')).toBeInTheDocument();
expect(screen.getByText('客户证据包交付总览')).toBeInTheDocument();
expect(screen.getByText('先给客户一个结论:当前筛选能交付哪些证据、还缺哪一类证据、下一步应该导出还是补查。')).toBeInTheDocument();