feat(platform): add customer alert closure board

This commit is contained in:
lingniu
2026-07-05 04:42:20 +08:00
parent 36dbc26ea7
commit bb6f577141
3 changed files with 177 additions and 1 deletions

View File

@@ -2550,6 +2550,87 @@ button.vp-realtime-command-item:focus-visible {
gap: 10px;
}
.vp-notification-customer-board {
margin-bottom: 16px;
overflow: hidden;
}
.vp-notification-customer-board .semi-card-body {
display: grid;
grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
}
.vp-notification-customer-summary {
padding: 18px;
border-right: 1px solid var(--vp-border);
background: #f8fbff;
display: grid;
gap: 12px;
align-content: start;
}
.vp-notification-customer-steps {
padding: 16px;
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 10px;
background: #fff;
}
.vp-notification-customer-step {
min-height: 158px;
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-notification-customer-step:hover,
.vp-notification-customer-step:focus-visible {
border-color: rgba(22, 100, 255, 0.45);
box-shadow: var(--vp-shadow-sm);
outline: none;
}
.vp-notification-customer-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-notification-customer-step strong {
color: var(--vp-text);
font-size: 18px;
line-height: 24px;
}
.vp-notification-customer-step small {
color: var(--vp-text-muted);
font-size: 12px;
line-height: 18px;
}
.vp-notification-customer-step em {
color: #1664ff;
font-style: normal;
font-size: 12px;
font-weight: 600;
align-self: end;
}
.vp-notification-coverage-board {
display: grid;
grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
@@ -4655,6 +4736,8 @@ button.vp-realtime-command-item:focus-visible {
.vp-alert-vehicle-task-grid,
.vp-alert-command-board,
.vp-alert-command-grid,
.vp-notification-customer-board .semi-card-body,
.vp-notification-customer-steps,
.vp-notification-coverage-board,
.vp-notification-coverage-grid,
.vp-notification-owner-item,