diff --git a/en/application-dev/reference/arkui-ts/ts-basic-components-stepperitem.md b/en/application-dev/reference/arkui-ts/ts-basic-components-stepperitem.md index 809b3f114fe2c2b9e0baba64f049d136d689a1cf..7427783669fc717e2b21857f16154c1fa4176817 100644 --- a/en/application-dev/reference/arkui-ts/ts-basic-components-stepperitem.md +++ b/en/application-dev/reference/arkui-ts/ts-basic-components-stepperitem.md @@ -28,12 +28,12 @@ StepperItem() ## ItemState -| Name | Value | Description| -| -------- | -------- |-------- | -| Normal | 0 |The button on the right is clickable and can navigate users to the next **\** when it is clicked.| -| Disabled | 1 |The button on the right is disabled.| -| Waiting | 2 | The button on the right is not displayed, and a progress bar is displayed instead.| -| Skip | 3 |The button on the right reads "Skip" by default. You can define the processing logic for this state in the **onSkip** callback of the stepper.| +| Name | Description| +| -------- |-------- | +| Normal |The button on the right is clickable and can navigate users to the next **\** when it is clicked.| +| Disabled |The button on the right is disabled.| +| Waiting | The button on the right is not displayed, and a progress bar is displayed instead.| +| Skip |The button on the right reads "Skip" by default. You can define the processing logic for this state in the **onSkip** callback of the stepper.| ## Example diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-stepperitem.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-stepperitem.md index 16eca00028f791c505086f8f54d8d305cc3e8f74..2dcd381ba8e505f7525ec7a4c7ba38838046aae6 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-stepperitem.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-stepperitem.md @@ -28,12 +28,12 @@ StepperItem() ## ItemState枚举说明 -| 名称 | 值 | 描述 | -| -------- | -------- |-------- | -| Normal | 0 |正常状态,右侧文本按钮正常显示,可点击进入下一个StepperItem。 | -| Disabled | 1 |不可用状态,右侧文本按钮灰度显示,不可点击进入下一个StepperItem。 | -| Waiting | 2 | 等待状态,右侧文本按钮不显示,显示等待进度条,不可点击进入下一个StepperItem。 | -| Skip | 3 |跳过状态,右侧文本按钮默认显示“跳过”,此时可在Stepper的onSkip回调中自定义相关逻辑。 | +| 名称 | 描述 | +| -------- |-------- | +| Normal |正常状态,右侧文本按钮正常显示,可点击进入下一个StepperItem。 | +| Disabled |不可用状态,右侧文本按钮灰度显示,不可点击进入下一个StepperItem。 | +| Waiting | 等待状态,右侧文本按钮不显示,显示等待进度条,不可点击进入下一个StepperItem。 | +| Skip |跳过状态,右侧文本按钮默认显示“跳过”,此时可在Stepper的onSkip回调中自定义相关逻辑。 | ## 示例