Progress 进度条

引入

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

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

代码演示

基础用法

进度条默认为蓝色,使用percentage属性来设置当前进度

  1. <van-progress percentage="50" />

线条粗细

通过stroke-width可以设置进度条的粗细

  1. <van-progress :percentage="50" stroke-width="8" />

置灰

  1. <van-progress inactive percentage="50" />

样式定制

可以使用pivot-text属性自定义文字,color属性自定义进度条颜色

  1. <van-progress
  2. pivot-text="橙色"
  3. color="#f2826a"
  4. percentage="25"
  5. />
  6. <van-progress
  7. pivot-text="红色"
  8. color="#ee0a24"
  9. percentage="50"
  10. />
  11. <van-progress
  12. percentage="75"
  13. pivot-text="紫色"
  14. pivot-color="#7232dd"
  15. color="linear-gradient(to right, #be99ff, #7232dd)"
  16. />

API

Props

参数说明类型默认值版本
inactive是否置灰booleanfalse-
percentage进度百分比numberfalse-
stroke-width进度条粗细,默认单位为pxstring | number4px-
show-pivot是否显示进度文字booleantrue-
color进度条颜色string#1989fa-
text-color进度文字颜色string#fff-
track-color轨道颜色string#e5e5e51.0.0
pivot-text文字显示string百分比文字-
pivot-color文字背景色string与进度条颜色一致-

外部样式类

类名说明
custom-class根节点样式类

Progress 进度条 - 图1