feat(platform): add customer export workbench

This commit is contained in:
lingniu
2026-07-05 21:57:52 +08:00
parent a68db5e0eb
commit 7580fce07e
3 changed files with 264 additions and 0 deletions

View File

@@ -1375,6 +1375,110 @@ body {
gap: 10px;
}
.vp-customer-delivery-workbench {
margin-bottom: 16px;
padding: 14px;
border: 1px solid rgba(22, 100, 255, 0.18);
border-radius: 8px;
background: #ffffff;
display: grid;
grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1.52fr);
gap: 14px;
align-items: stretch;
}
.vp-customer-delivery-workbench-copy {
min-width: 0;
padding: 14px;
border: 1px solid var(--vp-border);
border-radius: 8px;
background: #f8fbff;
display: grid;
gap: 12px;
align-content: start;
}
.vp-customer-delivery-workbench-copy .semi-typography {
color: var(--vp-text);
line-height: 24px;
}
.vp-customer-delivery-scope {
padding: 12px;
border: 1px solid rgba(22, 100, 255, 0.18);
border-radius: 8px;
background: #ffffff;
display: grid;
gap: 6px;
}
.vp-customer-delivery-scope span {
color: var(--vp-text-muted);
font-size: 12px;
line-height: 18px;
}
.vp-customer-delivery-scope strong {
color: var(--vp-text);
font-size: 15px;
line-height: 22px;
word-break: break-word;
}
.vp-customer-delivery-workbench-grid {
min-width: 0;
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 10px;
}
.vp-customer-delivery-workbench-item {
min-width: 0;
min-height: 164px;
padding: 13px;
border: 1px solid var(--vp-border);
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, background 0.16s ease;
}
.vp-customer-delivery-workbench-item:hover,
.vp-customer-delivery-workbench-item:focus-visible {
border-color: rgba(22, 100, 255, 0.42);
background: #f7fbff;
box-shadow: 0 0 0 3px rgba(22, 100, 255, 0.08);
outline: none;
}
.vp-customer-delivery-workbench-item strong {
color: var(--vp-text);
font-size: 19px;
line-height: 25px;
word-break: break-word;
}
.vp-customer-delivery-workbench-item span {
color: var(--vp-text-muted);
font-size: 12px;
line-height: 18px;
word-break: break-word;
}
.vp-customer-delivery-workbench-item em {
color: var(--vp-primary);
font-size: 12px;
font-style: normal;
font-weight: 700;
line-height: 18px;
}
.vp-customer-map-situation {
margin-bottom: 16px;
padding: 14px;
@@ -10660,6 +10764,8 @@ button.vp-realtime-command-item:focus-visible {
.vp-vehicle-task-grid,
.vp-dispatch-operations-home,
.vp-dispatch-operations-highlights,
.vp-customer-delivery-workbench,
.vp-customer-delivery-workbench-grid,
.vp-source-readiness-grid,
.vp-source-readiness-metrics,
.vp-map-ops-board,