diff --git a/frontend/src/views/MainView.vue b/frontend/src/views/MainView.vue index 0dab5c3..7aef973 100644 --- a/frontend/src/views/MainView.vue +++ b/frontend/src/views/MainView.vue @@ -15,13 +15,17 @@ :class="{ active: viewMode === mode }" @click="viewMode = mode" > - {{ mode.toUpperCase() }} + {{ { graph: '图谱', split: '双栏', workbench: '工作台' }[mode] }}
- +
+ Step 1/5 + 图谱构建 +
+
{{ statusText }} @@ -391,6 +395,7 @@ onUnmounted(() => { } .brand { + font-family: 'JetBrains Mono', monospace; font-weight: 800; font-size: 18px; letter-spacing: 1px; @@ -429,6 +434,37 @@ onUnmounted(() => { gap: 8px; font-size: 12px; color: #666; + font-weight: 500; +} + +.header-right { + display: flex; + align-items: center; + gap: 16px; +} + +.workflow-step { + display: flex; + align-items: center; + gap: 8px; + font-size: 14px; +} + +.step-num { + font-family: 'JetBrains Mono', monospace; + font-weight: 700; + color: #999; +} + +.step-name { + font-weight: 700; + color: #000; +} + +.step-divider { + width: 1px; + height: 14px; + background-color: #E0E0E0; } .dot {