-
上一步
-
下一步
-
-
- 1-1
- 1-2(不可点击)
- 1-3(不可访问)
-
-
- 2-1
- 2-2
- 2-3
-
-
- 3-1
- 3-2
- 3-3
-
-
- 4-1
- 4-2
- 4-3
-
- 步骤 1-1 的内容
- 步骤 1-2 的内容
- 步骤 1-3 的内容
- 步骤 2-1 的内容
- 步骤 2-2 的内容
- 步骤 2-3 的内容
- 步骤 3-1 的内容
- 步骤 3-2 的内容
- 步骤 3-3 的内容
- 步骤 4-1 的内容
- 步骤 4-2 的内容
- 步骤 4-3 的内容
-
+
+
+
+ 默认用法
+
+
+
+
+
+ 该多步骤视图组件由 `dao-steps` `dao-step` `dao-substep` `dao-step-content` 四个组件组合而成。
+ 其中 `dao-steps` 的 `v-model` 允许通过编程的方式调整当前激活的 step
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/view/router.js b/examples/view/router.js
index 4c67ea7c6..1bd134db5 100644
--- a/examples/view/router.js
+++ b/examples/view/router.js
@@ -230,7 +230,7 @@ const components = [
path: 'steps',
meta: {
available: true,
- docs: false,
+ docs: true,
test: false,
},
}, {
diff --git a/src/components/dao-steps/dao-steps.scss b/src/components/dao-steps/dao-steps.scss
index fe96645a1..5b2d8ecff 100644
--- a/src/components/dao-steps/dao-steps.scss
+++ b/src/components/dao-steps/dao-steps.scss
@@ -1,14 +1,13 @@
@import '../dao-color.scss';
-
.dao-steps {
+ display: flex;
&-sidebar {
- float: left;
+ flex-shrink: 0;
width: 200px;
margin-right: 20px;
}
&-content {
- float: left;
- width: calc(100% - 220px);
+ width: 100%;
}
.dao-step {
&:last-child .dao-substep:last-child:after {
@@ -121,7 +120,7 @@
&:after {
top: 64%;
}
- .dot{
+ .dot {
visibility: visible;
&:before {
background-color: $blue;
@@ -135,4 +134,4 @@
color: $grey-light;
cursor: not-allowed;
}
-}
+}
\ No newline at end of file