Progress 进度条

使用指南

在 app.json 或 index.json 中引入组件

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

代码演示

基础用法

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

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

置灰

  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="#f44"
  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

参数说明类型默认值
inactive是否置灰Booleanfalse
percentage进度百分比Numberfalse
show-pivot是否显示进度文字Booleantrue
color进度条颜色String#1989fa
text-color进度条文字颜色String#fff
pivot-text文字显示String百分比文字
pivot-color文字背景色String与进度条颜色一致

外部样式类

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

更新日志

版本类型内容
0.2.1feature新增组件

原文: https://youzan.github.io/vant-weapp/#/progress