feat: 开站网元安装步骤进度的显示

This commit is contained in:
TsMask
2024-04-28 10:23:14 +08:00
parent efb98ac577
commit 957868cc27
10 changed files with 566 additions and 188 deletions

View File

@@ -56,6 +56,22 @@ onMounted(() => {
<template>
<div class="container" :style="calcBG">
<a-card :bordered="false" class="build-card">
<!-- 网元安装步骤进度 -->
<a-steps
v-if="stepState.neStepsCurrent != -1"
:current="stepState.neStepsCurrent"
direction="horizontal"
type="navigation"
>
<a-step
v-for="s in stepState.neSteps"
:key="s.title"
:title="s.title"
:description="s.description"
:disabled="true"
/>
</a-steps>
<!-- 步骤页面 -->
<component :is="currentComponent" />
</a-card>