feat(platform): add vehicle data flow workbench

This commit is contained in:
lingniu
2026-07-04 23:10:42 +08:00
parent ee93d149e2
commit bf106a9730
3 changed files with 178 additions and 0 deletions

View File

@@ -1980,6 +1980,64 @@ button.vp-realtime-command-item:focus-visible {
line-height: 32px;
}
.vp-data-flow-grid {
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 12px;
}
.vp-data-flow-item {
min-height: 216px;
padding: 14px;
border: 1px solid var(--vp-border);
border-radius: var(--vp-radius);
background: #fbfcff;
color: inherit;
display: grid;
gap: 10px;
align-content: start;
text-align: left;
cursor: pointer;
transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.vp-data-flow-item:hover,
.vp-data-flow-item:focus-visible {
border-color: rgba(22, 100, 255, 0.42);
box-shadow: 0 0 0 3px rgba(22, 100, 255, 0.08);
outline: none;
}
.vp-data-flow-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
}
.vp-data-flow-head > span {
width: 30px;
height: 30px;
border-radius: 7px;
background: rgba(22, 100, 255, 0.09);
color: #1664ff;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: 700;
}
.vp-data-flow-evidence {
min-height: 54px;
padding: 10px;
border-radius: 6px;
background: rgba(10, 168, 107, 0.08);
color: var(--vp-text);
font-size: 12px;
line-height: 18px;
}
.vp-scenario-grid {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
@@ -2252,6 +2310,7 @@ button.vp-realtime-command-item:focus-visible {
.vp-scenario-grid,
.vp-operation-flow,
.vp-service-model-grid,
.vp-data-flow-grid,
.vp-capability-grid,
.vp-conclusion-grid,
.vp-monitor-layout,