# Progress 进度条

### 引入

在`index.config.js中引入组件

```json
"usingComponents": {
  "van-progress": "@vant/weapp/progress/index"
}
```

## 代码演示

### 基础用法

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

```html
<van-progress customClass="progress-position" percentage="50" />
```

### 线条粗细

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

```html
 <van-progress customClass="progress-position" strokeWidth="8" percentage="50" />
```

### 置灰

```html
<van-progress customClass="progress-position" inactive percentage="50" />
```

### 样式定制

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

```html
<van-progress customClass="progress-position" pivotText="橙色" color="#f2826a" percentage="25" />

<van-progress customClass="progress-position" pivotText="红色" color="#ee0a24" percentage="50" />

<van-progress
     customClass="progress-position"
     percentage="75"
     pivotText="紫色"
     pivotColor="#7232dd"
     color="linear-gradient(to right, #be99ff, #7232dd)"
/>
```

## API
### 注:属性应用在组件上需要统一使用驼峰式命名，如custom-class应变为
```html
<van-button type="primary" customClass='myClass' size="large">大号按钮</van-button>
```
### 注:事件应用在组件上需要统一使用驼峰式命名，如bind:click/bind:search/bind:before-enter应变为
```html
<van-button type="primary" onClick={()=>this.onClick()}>大号按钮</van-button>
<van-search type="primary" onSearch={()=>this.onSearch()}>大号按钮</van-search>
<van-transition type="primary" onBeforeEnter={()=>this.onBeforeEnter()}>大号按钮</van-transition>
```
### Props

| 参数 | 说明 | 类型 | 默认值 | 版本 |
| --- | --- | --- | --- | --- |
| inactive | 是否置灰 | _boolean_ | `false` | - |
| percentage | 进度百分比 | _number_ | `false` | - |
| stroke-width | 进度条粗细，默认单位为`px` | _string \| number_ | `4px` | - |
| show-pivot | 是否显示进度文字 | _boolean_ | `true` | - |
| color | 进度条颜色 | _string_ | `#1989fa` | - |
| text-color | 进度文字颜色 | _string_ | `#fff` | - |
| track-color | 轨道颜色 | _string_ | `#e5e5e5` | 1.0.0 |
| pivot-text | 文字显示 | _string_ | 百分比文字 | - |
| pivot-color | 文字背景色 | _string_ | 与进度条颜色一致 | - |

### 外部样式类

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