feat(platform): add customer fleet command center

This commit is contained in:
lingniu
2026-07-06 06:10:06 +08:00
parent 00d416964b
commit e847e1c7e8
3 changed files with 190 additions and 0 deletions

View File

@@ -1969,6 +1969,84 @@ body {
align-items: stretch;
}
.vp-fleet-operations-command {
margin-top: 16px;
border: 1px solid rgba(22, 100, 255, 0.18);
border-radius: 8px;
background: #ffffff;
display: grid;
grid-template-columns: minmax(320px, 0.46fr) minmax(0, 1.54fr);
overflow: hidden;
box-shadow: var(--vp-shadow-sm);
}
.vp-fleet-operations-command-copy {
padding: 18px;
border-right: 1px solid var(--vp-border);
background: #f8fbff;
display: grid;
gap: 10px;
align-content: center;
}
.vp-fleet-operations-command-copy .semi-typography {
line-height: 22px;
}
.vp-fleet-operations-command-grid {
padding: 14px;
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 10px;
}
.vp-fleet-operations-command-item {
min-height: 138px;
padding: 12px;
border: 1px solid rgba(22, 100, 255, 0.14);
border-radius: 8px;
background: #fbfcff;
color: inherit;
cursor: pointer;
font: inherit;
text-align: left;
display: grid;
gap: 8px;
align-content: start;
}
.vp-fleet-operations-command-item:hover,
.vp-fleet-operations-command-item:focus-visible {
border-color: rgba(22, 100, 255, 0.42);
background: #eef5ff;
box-shadow: 0 0 0 3px rgba(22, 100, 255, 0.08);
outline: none;
}
.vp-fleet-operations-command-item strong {
color: var(--vp-text);
font-size: 17px;
line-height: 24px;
font-weight: 800;
word-break: break-word;
}
.vp-fleet-operations-command-item span {
color: var(--vp-text-muted);
font-size: 12px;
line-height: 18px;
word-break: break-word;
}
.vp-fleet-operations-command-item em {
align-self: end;
color: var(--vp-primary);
font-size: 12px;
font-style: normal;
font-weight: 800;
line-height: 18px;
}
.vp-dispatch-operations-map {
min-width: 0;
border: 1px solid var(--vp-border);
@@ -15090,6 +15168,8 @@ button.vp-realtime-command-item:focus-visible {
.vp-vehicle-task-grid,
.vp-service-delivery-strip,
.vp-dispatch-operations-home,
.vp-fleet-operations-command,
.vp-fleet-operations-command-grid,
.vp-dispatch-operations-highlights,
.vp-customer-delivery-workbench,
.vp-customer-delivery-workbench-grid,