You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.4 KiB

10 years ago
# Progress
10 years ago
- category: Components
10 years ago
- chinese: 进度条
9 years ago
- order: 17
10 years ago
---
展示操作的当前进度。
10 years ago
## 何时使用
10 years ago
10 years ago
在操作需要较长时间才能完成时,为用户显示该操作的当前进度和状态。
10 years ago
10 years ago
* 当一个操作会打断当前界面,或者需要在后台运行,且耗时可能超过2秒时;
* 当需要显示一个操作完成的百分比时。
10 years ago
## Progress Circle API
10 years ago
| 参数 | 说明 | 类型 | 默认值 |
10 years ago
|----------|---------------|----------|-------------|
| percent | 百分比 | number | 0 |
10 years ago
| status | 状态,有两个值normal、exception | string | normal |
| strokeWidth | 进度条线的宽度,单位是进度条画布宽度的百分比 | number | 1 |
| width | 必填,进度条画布宽度,单位px。这里没有提供height属性设置,Line型高度就是strokeWidth,Circle型高度等于width | number | null |
10 years ago
## Progress Bar API
| 参数 | 说明 | 类型 | 默认值 |
|----------|---------------|----------|-------------|
| percent | 百分比 | number | 0 |
| status | 状态,有两个值normal、exception、active三种状态 | string | normal |
| strokeWidth | 进度条线的宽度,单位是px | number | 1 |
| showInfo | 是否显示进度数值和状态图标 | bool | true |
10 years ago