feat(platform): organize console around vehicle service

This commit is contained in:
lingniu
2026-07-04 19:13:28 +08:00
parent cbe7882d51
commit 75d232e773
4 changed files with 121 additions and 20 deletions

View File

@@ -69,6 +69,23 @@ body {
white-space: nowrap;
}
.vp-nav-groups {
display: grid;
gap: 12px;
}
.vp-nav-group {
min-width: 0;
}
.vp-nav-section-title {
padding: 0 12px 6px;
color: var(--vp-text-subtle);
font-size: 12px;
font-weight: 600;
line-height: 18px;
}
.vp-main {
min-width: 0;
}
@@ -878,6 +895,30 @@ body {
gap: 12px;
}
.vp-service-model-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 12px;
}
.vp-service-model-item {
min-height: 132px;
padding: 14px;
border: 1px solid var(--vp-border);
border-radius: var(--vp-radius);
background: #fbfcff;
display: grid;
gap: 10px;
align-content: start;
}
.vp-service-model-value {
color: var(--vp-text);
font-size: 26px;
font-weight: 700;
line-height: 32px;
}
.vp-operation-step {
min-height: 176px;
padding: 14px;
@@ -1031,6 +1072,7 @@ body {
.vp-evidence-grid,
.vp-action-grid,
.vp-operation-flow,
.vp-service-model-grid,
.vp-capability-grid,
.vp-conclusion-grid,
.vp-monitor-layout,