From 8f8aed63d7141224878201e43416c2f12e7d4027 Mon Sep 17 00:00:00 2001 From: yamila Date: Wed, 14 Dec 2022 16:32:24 +0800 Subject: [PATCH] update ui-ts-layout-flex Signed-off-by: yamila --- zh-cn/application-dev/ui/ui-js-animate-component.md | 6 +++--- zh-cn/application-dev/ui/ui-js-building-ui-routes.md | 2 +- zh-cn/application-dev/ui/ui-ts-layout-flex.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/zh-cn/application-dev/ui/ui-js-animate-component.md b/zh-cn/application-dev/ui/ui-js-animate-component.md index 7714f24bfe..0223206674 100644 --- a/zh-cn/application-dev/ui/ui-js-animate-component.md +++ b/zh-cn/application-dev/ui/ui-js-animate-component.md @@ -427,17 +427,17 @@ export default { ]; this.animation = this.$element('content').animate(frames, options); this.animation.onstart = function(){ - prompt.showToast({ + promptAction.showToast({ message: "start" }); }; this.animation.onrepeat = function(){ - prompt.showToast({ + promptAction.showToast({ message: " repeated" }); }; this.animation.onfinish = function(){ - prompt.showToast({ + promptAction.showToast({ message: " finished" }); }; diff --git a/zh-cn/application-dev/ui/ui-js-building-ui-routes.md b/zh-cn/application-dev/ui/ui-js-building-ui-routes.md index 7a7e141a70..0c1f7da409 100644 --- a/zh-cn/application-dev/ui/ui-js-building-ui-routes.md +++ b/zh-cn/application-dev/ui/ui-js-building-ui-routes.md @@ -65,7 +65,7 @@ index和detail这两个页面均包含一个text组件和button组件:text组 import router from '@ohos.router'; export default { launch() { - router.pushUrl ({ + router.push ({ url: 'pages/detail/detail', }); }, diff --git a/zh-cn/application-dev/ui/ui-ts-layout-flex.md b/zh-cn/application-dev/ui/ui-ts-layout-flex.md index ceac355dcd..688b4351e1 100644 --- a/zh-cn/application-dev/ui/ui-ts-layout-flex.md +++ b/zh-cn/application-dev/ui/ui-ts-layout-flex.md @@ -6,7 +6,7 @@ - 容器: [Flex组件](../reference/arkui-ts/ts-container-flex.md)作为Flex布局的容器,用于设置布局相关属性。 - 子组件: Flex组件内的子组件自动成为布局的子组件。 - 主轴: Flex组件布局方向的轴线,子组件默认沿着主轴排列。主轴开始的位置称为主轴起始端,结束位置称为主轴终点端。 -- 交叉轴: 垂直于主轴方向的轴线。交叉轴起始的位置称为主轴首部,结束位置称为交叉轴尾部。 +- 交叉轴: 垂直于主轴方向的轴线。交叉轴起始的位置称为交叉轴首部,结束位置称为交叉轴尾部。 以FlexDirection.Row的Flex为例: -- GitLab