feat(platform): add customer export center

This commit is contained in:
lingniu
2026-07-05 18:04:10 +08:00
parent 3be803316a
commit 261dbbacdb
3 changed files with 168 additions and 0 deletions

View File

@@ -6204,6 +6204,92 @@ button.vp-realtime-command-item:focus-visible {
line-height: 18px;
}
.vp-history-export-center {
margin-top: 16px;
border: 1px solid rgba(22, 100, 255, 0.16);
border-radius: var(--vp-radius);
background: #fff;
display: grid;
grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr);
overflow: hidden;
box-shadow: var(--vp-shadow-sm);
}
.vp-history-export-center-summary {
padding: 18px;
border-right: 1px solid var(--vp-border);
background: #f8fbff;
display: grid;
gap: 10px;
align-content: start;
}
.vp-history-export-center-summary strong {
color: var(--vp-text);
font-size: 18px;
line-height: 26px;
font-weight: 700;
}
.vp-history-export-center-summary span {
color: var(--vp-text-muted);
font-size: 13px;
line-height: 20px;
}
.vp-history-export-center-grid {
padding: 16px;
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 10px;
}
.vp-history-export-center-item {
min-height: 136px;
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-export-center-item:hover,
.vp-history-export-center-item:focus-visible {
border-color: rgba(22, 100, 255, 0.45);
box-shadow: var(--vp-shadow-sm);
outline: none;
}
.vp-history-export-center-item:disabled {
cursor: not-allowed;
opacity: 0.62;
}
.vp-history-export-center-item strong {
color: var(--vp-text);
font-size: 20px;
line-height: 26px;
}
.vp-history-export-center-item span {
color: var(--vp-text-muted);
font-size: 12px;
line-height: 18px;
}
.vp-history-export-center-item em {
color: #1664ff;
font-style: normal;
font-size: 12px;
font-weight: 700;
line-height: 18px;
}
.vp-history-customer-export-board {
margin-top: 16px;
overflow: hidden;
@@ -8280,6 +8366,8 @@ button.vp-realtime-command-item:focus-visible {
.vp-trajectory-impact-grid,
.vp-history-time-window-board,
.vp-history-time-window-grid,
.vp-history-export-center,
.vp-history-export-center-grid,
.vp-history-customer-export-board .semi-card-body,
.vp-history-customer-export-steps,
.vp-history-report-templates,
@@ -8317,6 +8405,11 @@ button.vp-realtime-command-item:focus-visible {
border-bottom: 1px solid var(--vp-border);
}
.vp-history-export-center-summary {
border-right: 0;
border-bottom: 1px solid var(--vp-border);
}
.vp-customer-vehicle-monitor-copy {
border-right: 0;
border-bottom: 1px solid var(--vp-border);