feat(platform): add customer history export board

This commit is contained in:
lingniu
2026-07-05 04:50:35 +08:00
parent b5f98bb6d8
commit d762403677
3 changed files with 187 additions and 0 deletions

View File

@@ -3458,6 +3458,92 @@ button.vp-realtime-command-item:focus-visible {
word-break: break-word;
}
.vp-history-customer-export-board {
margin-top: 16px;
overflow: hidden;
}
.vp-history-customer-export-board .semi-card-body {
display: grid;
grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
}
.vp-history-customer-export-summary {
padding: 18px;
border-right: 1px solid var(--vp-border);
background: #f8fbff;
display: grid;
gap: 12px;
align-content: start;
}
.vp-history-customer-export-steps {
padding: 16px;
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 10px;
background: #fff;
}
.vp-history-customer-export-step {
min-height: 156px;
padding: 12px;
border: 1px solid var(--vp-border);
border-radius: 8px;
background: #fbfcff;
text-align: left;
cursor: pointer;
font: inherit;
display: grid;
gap: 8px;
align-content: start;
}
.vp-history-customer-export-step:hover,
.vp-history-customer-export-step:focus-visible {
border-color: rgba(22, 100, 255, 0.45);
box-shadow: var(--vp-shadow-sm);
outline: none;
}
.vp-history-customer-export-step:disabled {
cursor: not-allowed;
opacity: 0.62;
}
.vp-history-customer-export-step > span {
width: 28px;
height: 28px;
border-radius: 50%;
background: #1664ff;
color: #fff;
font-size: 12px;
font-weight: 700;
display: inline-flex;
align-items: center;
justify-content: center;
}
.vp-history-customer-export-step strong {
color: var(--vp-text);
font-size: 18px;
line-height: 24px;
}
.vp-history-customer-export-step small {
color: var(--vp-text-muted);
font-size: 12px;
line-height: 18px;
}
.vp-history-customer-export-step em {
color: #1664ff;
font-style: normal;
font-size: 12px;
font-weight: 600;
align-self: end;
}
.vp-history-query-workbench {
display: grid;
grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
@@ -4850,6 +4936,8 @@ button.vp-realtime-command-item:focus-visible {
.vp-trajectory-anomaly-grid,
.vp-trajectory-impact-board,
.vp-trajectory-impact-grid,
.vp-history-customer-export-board .semi-card-body,
.vp-history-customer-export-steps,
.vp-history-query-workbench,
.vp-history-query-grid,
.vp-history-package-board,