Steps 步骤条

引入

app.jsonindex.json中引入组件,详细介绍见快速上手

  1. "usingComponents": {
  2. "van-steps": "path/to/@vant/weapp/dist/steps/index"
  3. }

代码演示

基础用法

  1. <van-steps
  2. steps="{{ steps }}"
  3. active="{{ active }}"
  4. />
  1. Page({
  2. data: {
  3. steps: [
  4. {
  5. text: '步骤一',
  6. desc: '描述信息'
  7. },
  8. {
  9. text: '步骤二',
  10. desc: '描述信息'
  11. },
  12. {
  13. text: '步骤三',
  14. desc: '描述信息'
  15. },
  16. {
  17. text: '步骤四',
  18. desc: '描述信息'
  19. }
  20. ]
  21. }
  22. });

自定义样式

可以通过 active-iconactive-color 属性设置激活状态下的图标和颜色

  1. <van-steps
  2. steps="{{ steps }}"
  3. active="{{ active }}"
  4. active-icon="success"
  5. active-color="#38f"
  6. />

竖向步骤条

可以通过设置direction属性来改变步骤条的显示方式

  1. <van-steps
  2. steps="{{ steps }}"
  3. active="{{ active }}"
  4. direction="vertical"
  5. active-color="#ee0a24"
  6. />

API

Steps Props

参数说明类型默认值版本
active当前步骤number0-
direction显示方向,可选值为 horizontal verticalstringhorizontal-
active-color激活状态颜色string#07c160-
inactive-color未激活状态颜色string#969799-
active-icon激活状态底部图标,可选值见 Icon 组件stringchecked-
inactive-icon未激活状态底部图标,可选值见 Icon 组件string--

外部样式类

类名说明
custom-class根节点样式类
desc-class描述信息样式类

Steps 步骤条 - 图1