Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
0fa7e9ac
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
0fa7e9ac
编写于
11月 07, 2022
作者:
O
openharmony_ci
提交者:
Gitee
11月 07, 2022
浏览文件
操作
浏览文件
下载
差异文件
!11267 修改问题同步
Merge pull request !11267 from LiAn/master
上级
436fd08f
756b52ec
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
7 addition
and
7 deletion
+7
-7
zh-cn/application-dev/reference/arkui-ts/ts-state-management.md
...application-dev/reference/arkui-ts/ts-state-management.md
+3
-3
zh-cn/application-dev/ui/ui-ts-animation-feature.md
zh-cn/application-dev/ui/ui-ts-animation-feature.md
+1
-1
zh-cn/application-dev/ui/ui-ts-layout-grid-container-new.md
zh-cn/application-dev/ui/ui-ts-layout-grid-container-new.md
+3
-3
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-state-management.md
浏览文件 @
0fa7e9ac
...
...
@@ -261,7 +261,7 @@ IsMutable(propName: string): boolean
| boolean | 返回此属性是否存在并且是否可以改变。 |
```
ts
let
simple
=
AppStorage
.
IsMutable
()
let
simple
=
AppStorage
.
IsMutable
(
'
simpleProp
'
)
```
### Size
...
...
@@ -643,7 +643,7 @@ PersistProps(properties: {key: string, defaultValue: any}[]): void;
| key | {key: string, defaultValue: any}[] | 是 | 要关联的属性数组。 |
```
ts
PersistentStorage
.
PersistProps
([{
'
highScore
'
,
'
0
'
},{
'
wightScore
'
,
'
1
'
}])
PersistentStorage
.
PersistProps
([{
key
:
'
highScore
'
,
defaultValue
:
'
0
'
},{
key
:
'
wightScore
'
,
defaultValue
:
'
1
'
}])
```
### Keys
...
...
@@ -725,7 +725,7 @@ EnvProps(props: {key: string, defaultValue: any}[]): void
| key | {key: string, defaultValue: any}[] | 是 | 要关联的属性数组。 | 要关联的属性数组。 |
```
ts
Environment
.
EnvProps
([{
'
accessibilityEnabled
'
,
'
default
'
},{
'
accessibilityUnEnabled
'
,
'
undefault
'
}])
Environment
.
EnvProps
([{
key
:
'
accessibilityEnabled
'
,
defaultValue
:
'
default
'
},{
key
:
'
accessibilityUnEnabled
'
,
defaultValue
:
'
undefault
'
}])
```
### Keys
...
...
zh-cn/application-dev/ui/ui-ts-animation-feature.md
浏览文件 @
0fa7e9ac
...
...
@@ -305,7 +305,7 @@
.
height
(
184
)
.
width
(
'
100%
'
)
.
onClick
(()
=>
{
router
.
push
({
url
:
'
pages/FoodDetail
'
,
params
:
{
food
Id
:
this
.
foodItem
}
})
router
.
push
({
url
:
'
pages/FoodDetail
'
,
params
:
{
food
Data
:
this
.
foodItem
}
})
})
}
}
...
...
zh-cn/application-dev/ui/ui-ts-layout-grid-container-new.md
浏览文件 @
0fa7e9ac
...
...
@@ -83,7 +83,7 @@ GridRow({
}
})
{
Row
()
{
Text
(
$
{
index
}
)
Text
(
`
${
index
}
`
)
}.
width
(
"
100%
"
).
height
(
"
50vp
"
)
}.
backgroundColor
(
color
)
})
...
...
@@ -264,7 +264,7 @@ GridCol组件作为GridRow组件的子组件,通过给GridCol传参或者设
ForEach
(
this
.
bgColors
,
(
color
,
index
)
=>
{
GridCol
({
span
:
2
})
{
Row
()
{
Text
(
$
{
index
}
)
Text
(
`
${
index
}
`
)
}.
width
(
"
100%
"
).
height
(
"
50vp
"
)
}
.
backgroundColor
(
color
)
...
...
@@ -281,7 +281,7 @@ GridCol组件作为GridRow组件的子组件,通过给GridCol传参或者设
ForEach
(
this
.
bgColors
,
(
color
,
index
)
=>
{
GridCol
({
span
:
{
xs
:
1
,
sm
:
2
,
md
:
3
,
lg
:
4
}
})
{
Row
()
{
Text
(
$
{
index
}
)
Text
(
`
${
index
}
`
)
}.
width
(
"
100%
"
).
height
(
"
50vp
"
)
}
.
backgroundColor
(
color
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录