diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-progress.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-progress.md index fc70ceca6fdedde145509690484b3fafe1a4dc93..ad58b4380305f683297d065507636d576bda0b04 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-progress.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-progress.md @@ -34,9 +34,9 @@ Progress(value: {value: number, total?: number, type?: ProgressType}) - ProgressType枚举说明 | 名称 | 描述 | | -------- | -------- | - | Linear | 线性样式。 | + | Linear8+ | 线性样式。 | | Ring8+ | 环形无刻度样式,环形圆环逐渐填充完成过程。 | - | Eclipse | 圆形样式,展现类似月圆月缺的进度展示效果,从月牙逐渐到满月的这个过程代表了下载的进度。 | + | Eclipse8+ | 圆形样式,展现类似月圆月缺的进度展示效果,从月牙逐渐到满月的这个过程代表了下载的进度。 | | ScaleRing8+ | 环形有刻度样式,类似时钟刻度形式加载进度。 | | Capsule8+ | 胶囊样式,头尾两端处,进度条由弧形变成直线和直线变成弧形的过程;中段处,进度条正常往右走的过程。 | @@ -46,7 +46,7 @@ Progress(value: {value: number, total?: number, type?: ProgressType}) | 名称 | 参数类型 | 默认值 | 描述 | | -------- | -------- | -------- | -------- | | value | number | - | 设置当前进度值。 | -| color | Color | - | 设置进度条前景色。 | +| color | [ResourceColor](../../ui/ts-types.md) | - | 设置进度条前景色。 | | style8+ | {
strokeWidth?: Length,
scaleCount?: number,
scaleWidth?: Length
} | - | 定义组件的样式。
strokeWidth: 设置进度条宽度。
scaleCount: 设置环形进度条总刻度数。
scaleWidth: 设置环形进度条刻度粗细。
刻度粗细大于进度条宽度时,刻度粗细为系统默认粗细。 |