feat: 开站网元安装步骤进度的显示
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user