From edad97b4b865f1019f42d4a54bb4342d159bbd7b Mon Sep 17 00:00:00 2001 From: luoweibin Date: Wed, 17 May 2023 02:11:42 +0000 Subject: [PATCH] =?UTF-8?q?fixed=206e03578=20from=20https://gitee.com/luo-?= =?UTF-8?q?weibin/docs/pulls/18287=20=E5=88=A0=E9=99=A4=E5=80=BC=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: luoweibin Change-Id: Ieb827f2d009c3d694a723194ea8ccf01b6c3c2fb --- .../arkui-ts/ts-basic-components-stepperitem.md | 12 ++++++------ .../arkui-ts/ts-basic-components-stepperitem.md | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) 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 809b3f114f..7427783669 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 16eca00028..2dcd381ba8 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回调中自定义相关逻辑。 | ## 示例 -- GitLab