# Progress 进度条

用于展示操作的当前进度。

# 引入

import PressProgress from 'press-ui/press-progress/press-progress';

export default {
  components: {
    PressProgress,
  }
}

# 代码演示

# 基础用法

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

<press-progress :percentage="50" />

# 线条粗细

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

<press-progress :percentage="50" stroke-width="8" />

# 置灰

设置inactive属性后进度条将置灰。

<press-progress inactive :percentage="50" />

# 样式定制

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

<press-progress pivot-text="橙色" color="#f2826a" :percentage="25" />

<press-progress pivot-text="红色" color="#ee0a24" :percentage="50" />

<press-progress
  :percentage="75"
  pivot-text="紫色"
  pivot-color="#7232dd"
  color="linear-gradient(to right, #be99ff, #7232dd)"
/>

# API

# Props

参数 说明 类型 默认值
inactive 是否置灰 boolean false
percentage 进度百分比 number 0
stroke-width 进度条粗细,默认单位为px string | number 4px
show-pivot 是否显示进度文字 boolean true
color 进度条颜色 string #1989fa
text-color 进度文字颜色 string #fff
track-color 轨道颜色 string #e5e5e5
pivot-text 文字显示 string 百分比文字
pivot-color 文字背景色 string 与进度条颜色一致
custom-class 根节点样式类 string -

# 在线调试

横屏