Enhance MainView.vue with workflow step indicators and improved styling

- Updated button labels to display localized text for different view modes.
- Added a workflow step indicator to provide users with progress context.
- Enhanced styling for header elements, including font adjustments and layout improvements for better visual consistency.
This commit is contained in:
666ghj 2025-12-11 13:54:30 +08:00
parent 1f6f79c8aa
commit ba6f63fcbd

View file

@ -15,13 +15,17 @@
:class="{ active: viewMode === mode }" :class="{ active: viewMode === mode }"
@click="viewMode = mode" @click="viewMode = mode"
> >
{{ mode.toUpperCase() }} {{ { graph: '图谱', split: '双栏', workbench: '工作台' }[mode] }}
</button> </button>
</div> </div>
</div> </div>
<div class="header-right"> <div class="header-right">
<!-- Optional user info or status --> <div class="workflow-step">
<span class="step-num">Step 1/5</span>
<span class="step-name">图谱构建</span>
</div>
<div class="step-divider"></div>
<span class="status-indicator" :class="statusClass"> <span class="status-indicator" :class="statusClass">
<span class="dot"></span> <span class="dot"></span>
{{ statusText }} {{ statusText }}
@ -391,6 +395,7 @@ onUnmounted(() => {
} }
.brand { .brand {
font-family: 'JetBrains Mono', monospace;
font-weight: 800; font-weight: 800;
font-size: 18px; font-size: 18px;
letter-spacing: 1px; letter-spacing: 1px;
@ -429,6 +434,37 @@ onUnmounted(() => {
gap: 8px; gap: 8px;
font-size: 12px; font-size: 12px;
color: #666; 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 { .dot {