feat(platform): add customer daily operations home

This commit is contained in:
lingniu
2026-07-06 05:52:22 +08:00
parent ebaf67a134
commit 8b7614d2d6
3 changed files with 200 additions and 0 deletions

View File

@@ -1311,6 +1311,84 @@ body {
line-height: 18px;
}
.vp-today-operations-home {
grid-column: 1 / -1;
border-top: 1px solid rgba(22, 100, 255, 0.14);
background: #f6f9ff;
display: grid;
grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
}
.vp-today-operations-home-copy {
min-width: 0;
padding: 16px;
border-right: 1px solid rgba(22, 100, 255, 0.12);
display: grid;
gap: 10px;
align-content: start;
}
.vp-today-operations-home-copy .semi-button {
width: fit-content;
}
.vp-today-operations-home-grid {
min-width: 0;
padding: 12px;
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 10px;
}
.vp-today-operations-home-item {
min-width: 0;
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-today-operations-home-item:hover,
.vp-today-operations-home-item: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-today-operations-home-item strong {
color: var(--vp-text);
font-size: 18px;
line-height: 24px;
font-weight: 800;
word-break: break-word;
}
.vp-today-operations-home-item span {
color: var(--vp-text-muted);
font-size: 12px;
line-height: 18px;
word-break: break-word;
}
.vp-today-operations-home-item em {
align-self: end;
color: var(--vp-primary);
font-size: 12px;
font-style: normal;
font-weight: 800;
line-height: 18px;
}
.vp-customer-service-next {
grid-column: 1 / -1;
border-top: 1px solid var(--vp-border);
@@ -14833,6 +14911,8 @@ button.vp-realtime-command-item:focus-visible {
.vp-vehicle-question-grid,
.vp-customer-service-path,
.vp-customer-service-path-grid,
.vp-today-operations-home,
.vp-today-operations-home-grid,
.vp-customer-service-overview,
.vp-customer-service-overview-grid,
.vp-customer-service-next,