feat(platform): add customer task dispatch

This commit is contained in:
lingniu
2026-07-05 19:03:12 +08:00
parent 33f1ed24e4
commit e48ea7d22a
3 changed files with 103 additions and 0 deletions

View File

@@ -126,6 +126,74 @@ body {
outline: none;
}
.vp-customer-task-dispatch {
padding-top: 10px;
border-top: 1px solid rgba(22, 100, 255, 0.12);
display: grid;
gap: 8px;
}
.vp-customer-task-dispatch-head {
display: grid;
gap: 3px;
}
.vp-customer-task-dispatch-head strong {
color: var(--vp-text);
font-size: 13px;
line-height: 18px;
}
.vp-customer-task-dispatch-head span {
color: var(--vp-text-muted);
font-size: 11px;
line-height: 16px;
}
.vp-customer-task-dispatch-actions {
display: grid;
gap: 6px;
}
.vp-customer-task-dispatch-action {
min-height: 42px;
padding: 7px 8px;
border: 1px solid var(--vp-border);
border-radius: 7px;
background: #fff;
color: var(--vp-text);
cursor: pointer;
font: inherit;
text-align: left;
display: grid;
gap: 1px;
}
.vp-customer-task-dispatch-action strong {
font-size: 12px;
line-height: 17px;
}
.vp-customer-task-dispatch-action span {
color: var(--vp-text-muted);
font-size: 11px;
line-height: 15px;
}
.vp-customer-task-dispatch-action:hover,
.vp-customer-task-dispatch-action:focus-visible,
.vp-customer-task-dispatch-action-active {
border-color: rgba(22, 100, 255, 0.38);
background: #ffffff;
outline: none;
}
.vp-customer-task-dispatch-action-active strong,
.vp-customer-task-dispatch-action:hover strong,
.vp-customer-task-dispatch-action:focus-visible strong {
color: var(--vp-primary);
}
.vp-nav-groups {
display: grid;
gap: 12px;