feat(Step5Interaction): add section number display for improved user navigation

This commit is contained in:
666ghj 2026-01-16 21:26:11 +08:00
parent 3c89f3930e
commit 49847c5b26

View file

@ -29,6 +29,7 @@
}" }"
> >
<div class="section-header-row" @click="toggleSectionCollapse(idx)" :class="{ 'clickable': isSectionCompleted(idx + 1) }"> <div class="section-header-row" @click="toggleSectionCollapse(idx)" :class="{ 'clickable': isSectionCompleted(idx + 1) }">
<span class="section-number">{{ String(idx + 1).padStart(2, '0') }}</span>
<h3 class="section-title">{{ section.title }}</h3> <h3 class="section-title">{{ section.title }}</h3>
<svg <svg
v-if="isSectionCompleted(idx + 1)" v-if="isSectionCompleted(idx + 1)"