diff --git a/docs/examples-docs/steps.md b/docs/examples-docs/steps.md index bb6c3d1e8..ed483a012 100644 --- a/docs/examples-docs/steps.md +++ b/docs/examples-docs/steps.md @@ -2,3 +2,56 @@ ### 基础用法 +```html + + 买家下单 + 商家接单 + 买家提货 + 交易完成 + + + +``` + +### 只显示步骤条 + +```html + + 买家下单 + 商家接单 + 买家提货 + 交易完成 + +``` + + +### Steps API + +| 参数 | 说明 | 类型 | 默认值 | 可选值 | +|-----------|-----------|-----------|-------------|-------------| +| active | 当前激活的步骤,从0开始 | Number | '' | '' | +| icon | 当前步骤的icon | string | '' | '' | +| iconClass | 当前步骤栏为icon添加的类 | string | '' | '' | +| title | 当前步骤从标题 | string | '' | '' | +| description | 当前步骤描述 | string | '' | '' | + +### Steps Slot + +| 名称 | 说明 | +|-----------|-----------| +| message-extra | 状态栏添加额外的元素 | + diff --git a/docs/examples/steps.vue b/docs/examples/steps.vue index d4c329a93..7c122680b 100644 --- a/docs/examples/steps.vue +++ b/docs/examples/steps.vue @@ -3,17 +3,52 @@

Steps

基础用法

- + + 买家下单 + 商家接单 + 买家提货 + 交易完成 + + 下一步 + +

只显示步骤条

+ + 买家下单 + 商家接单 + 买家提货 + 交易完成 diff --git a/packages/steps/src/step.vue b/packages/steps/src/step.vue index 888e58d1a..8e6fbcc9a 100644 --- a/packages/steps/src/step.vue +++ b/packages/steps/src/step.vue @@ -1,6 +1,13 @@ @@ -8,8 +15,23 @@ export default { name: 'zan-step', - props: { - title: String + beforeCreate() { + this.$parent.steps.push(this); + }, + + computed: { + status() { + let index = this.$parent.steps.indexOf(this); + let active = this.$parent.active; + + if (index === -1) { + return ''; + } else if (index < active) { + return 'finish'; + } else if (index === active) { + return 'process'; + } + } } }; diff --git a/packages/steps/src/steps.vue b/packages/steps/src/steps.vue index 3050574d6..0c403a963 100644 --- a/packages/steps/src/steps.vue +++ b/packages/steps/src/steps.vue @@ -1,13 +1,15 @@