feat(platform): add customer history export wizard

This commit is contained in:
lingniu
2026-07-06 05:58:05 +08:00
parent 8b7614d2d6
commit 55a65d2bc6
3 changed files with 190 additions and 0 deletions

View File

@@ -11657,6 +11657,78 @@ button.vp-realtime-command-item:focus-visible {
line-height: 18px;
}
.vp-history-export-wizard {
margin-top: 16px;
border: 1px solid rgba(22, 100, 255, 0.18);
border-radius: var(--vp-radius);
background: #f7fbff;
display: grid;
grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
overflow: hidden;
box-shadow: var(--vp-shadow-sm);
}
.vp-history-export-wizard-copy {
min-width: 0;
padding: 18px;
border-right: 1px solid rgba(22, 100, 255, 0.12);
display: grid;
gap: 10px;
align-content: start;
}
.vp-history-export-wizard-copy .semi-button {
width: fit-content;
}
.vp-history-export-wizard-steps {
min-width: 0;
padding: 14px;
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 10px;
}
.vp-history-export-wizard-step {
min-height: 142px;
padding: 12px;
border: 1px solid rgba(22, 100, 255, 0.14);
border-radius: 8px;
background: #ffffff;
color: inherit;
cursor: pointer;
font: inherit;
text-align: left;
display: grid;
gap: 8px;
align-content: start;
transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}
.vp-history-export-wizard-step:hover,
.vp-history-export-wizard-step:focus-visible {
border-color: rgba(22, 100, 255, 0.42);
box-shadow: 0 10px 24px rgba(24, 39, 75, 0.08);
outline: none;
transform: translateY(-1px);
}
.vp-history-export-wizard-step strong {
color: var(--vp-text);
font-size: 17px;
line-height: 23px;
font-weight: 800;
word-break: break-word;
}
.vp-history-export-wizard-step span,
.vp-history-export-wizard-step small {
color: var(--vp-text-muted);
font-size: 12px;
line-height: 18px;
word-break: break-word;
}
.vp-history-delivery-conclusion-strip {
margin-top: 16px;
border: 1px solid rgba(22, 100, 255, 0.18);
@@ -15150,6 +15222,8 @@ button.vp-realtime-command-item:focus-visible {
.vp-trajectory-anomaly-grid,
.vp-trajectory-impact-board,
.vp-trajectory-impact-grid,
.vp-history-export-wizard,
.vp-history-export-wizard-steps,
.vp-history-delivery-conclusion-strip,
.vp-history-delivery-conclusion-metrics,
.vp-history-next-export-strip,