Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
0168e295
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看板
未验证
提交
0168e295
编写于
8月 30, 2023
作者:
O
openharmony_ci
提交者:
Gitee
8月 30, 2023
浏览文件
操作
浏览文件
下载
差异文件
!23445 接口适配最新模板调整
Merge pull request !23445 from LiAn/monthly_20230815
上级
7ea1bfa0
663ee668
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
35 addition
and
15 deletion
+35
-15
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-button.md
...tion-dev/reference/arkui-ts/ts-basic-components-button.md
+8
-4
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navrouter.md
...n-dev/reference/arkui-ts/ts-basic-components-navrouter.md
+7
-3
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md
...-dev/reference/arkui-ts/ts-basic-components-xcomponent.md
+6
-2
zh-cn/application-dev/reference/arkui-ts/ts-container-badge.md
.../application-dev/reference/arkui-ts/ts-container-badge.md
+6
-2
zh-cn/application-dev/reference/arkui-ts/ts-container-listitem.md
...plication-dev/reference/arkui-ts/ts-container-listitem.md
+8
-4
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-button.md
浏览文件 @
0168e295
...
...
@@ -14,7 +14,9 @@
## 接口
**方法1:**
Button(options?: {type?: ButtonType, stateEffect?: boolean})
### Button
Button(options?: {type?: ButtonType, stateEffect?: boolean})
从API version 9开始,该接口支持在ArkTS卡片中使用。
...
...
@@ -25,9 +27,11 @@
| type | ButtonType | 否 | 描述按钮显示样式。
<br/>
默认值:ButtonType.Capsule |
| stateEffect | boolean | 否 | 按钮按下时是否开启按压态显示效果,当设置为false时,按压效果关闭。
<br/>
默认值:true
<br/>
**说明:**
<br/>
当开启按压态显示效果,开发者设置状态样式时,会基于状态样式设置完成后的背景色再进行颜色叠加。 |
**方法2:**
Button(label?: ResourceStr, options?: { type?: ButtonType, stateEffect?: boolean })
### Button
Button(label?: ResourceStr, options?: { type?: ButtonType, stateEffect?: boolean })
使用文本内容创建相应的按钮组件,此时Button无法包含子组件。
使用文本内容创建相应的按钮组件,此时Button无法包含子组件。
从API version 9开始,该接口支持在ArkTS卡片中使用。
...
...
@@ -36,7 +40,7 @@
| 参数名 | 参数类型 | 必填 | 参数描述 |
| ------- | ----------------------------------- | ---- | ------------- |
| label |
[
ResourceStr
](
ts-types.md#resourcestr
)
| 否 | 按钮文本内容。 |
| options | { type?: ButtonType, stateEffect?: boolean } | 否 | 见
方法1
参数说明。 |
| options | { type?: ButtonType, stateEffect?: boolean } | 否 | 见
[
Button
](
#button-1
)
参数说明。 |
## 属性
...
...
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navrouter.md
浏览文件 @
0168e295
...
...
@@ -20,11 +20,15 @@
## 接口
**方法1:**
NavRouter()
### NavRouter
**方法2:**
NavRouter(value: RouteInfo)
<sup>
10+
</sup>
NavRouter()
提供路由信息,指定点击NavRouter时,要跳转的NavDestination页面。
### NavRouter<sup>10+</sup>
NavRouter(value: RouteInfo)
提供路由信息,指定点击NavRouter时,要跳转的NavDestination页面。
**参数:**
...
...
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md
浏览文件 @
0168e295
...
...
@@ -14,7 +14,9 @@
## 接口
**方法1:**
XComponent(value: {id: string, type: string, libraryname?: string, controller?: XComponentController})
### XComponent
XComponent(value: {id: string, type: string, libraryname?: string, controller?: XComponentController})
**参数:**
...
...
@@ -25,7 +27,9 @@
| libraryname | string | 否 | 应用Native层编译输出动态库名称,仅XComponent类型为"surface"时有效。 |
| controller |
[
XComponentcontroller
](
#xcomponentcontroller
)
| 否 | 给组件绑定一个控制器,通过控制器调用组件方法,仅XComponent类型为"surface"时有效。 |
**方法2:**
XComponent(value: {id: string, type: XComponentType, libraryname?: string, controller?: XComponentController})
<sup>
10+
</sup>
### XComponent<sup>10+</sup>
XComponent(value: {id: string, type: XComponentType, libraryname?: string, controller?: XComponentController})
**参数:**
...
...
zh-cn/application-dev/reference/arkui-ts/ts-container-badge.md
浏览文件 @
0168e295
...
...
@@ -18,7 +18,9 @@
## 接口
**方法1:**
Badge(value: {count: number, position?: BadgePosition, maxCount?: number, style: BadgeStyle})
### Badge
Badge(value: {count: number, position?: BadgePosition
\|
Position, maxCount?: number, style: BadgeStyle})
创建数字标记组件。
...
...
@@ -33,7 +35,9 @@
| maxCount | number | 否 | 最大消息数,超过最大消息时仅显示maxCount+。
<br/>
默认值:99
<br/>
取值范围:[-2147483648,2147483647],非整数时会舍去小数部分取整数部分,如5.5取5。 |
| style |
[
BadgeStyle
](
#badgestyle对象说明
)
| 是 | Badge组件可设置样式,支持设置文本颜色、尺寸、圆点颜色和尺寸。 |
**方法2:**
Badge(value: {value: string, position?: BadgePosition, style: BadgeStyle})
### Badge
Badge(value: {value: string, position?: BadgePosition
\|
Position, style: BadgeStyle})
根据字符串创建标记组件。
...
...
zh-cn/application-dev/reference/arkui-ts/ts-container-listitem.md
浏览文件 @
0168e295
...
...
@@ -15,7 +15,9 @@
从API version 9开始,该接口支持在ArkTS卡片中使用。
**方法1:**
ListItem(value?: ListItemOptions)
<sup>
10+
</sup>
### ListItem<sup>10+</sup>
ListItem(value?: ListItemOptions)
**参数:**
...
...
@@ -23,15 +25,17 @@
| ------ | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| value |
[
ListItemOptions
](
#listitemoptions10对象说明
)
| 否 | 为ListItem提供可选参数, 该对象内含有ListItemStyle枚举类型的style参数。 |
**方法2:**
ListItem(value?: string)
<sup>
(deprecated)
</sup>
### ListItem<sup>(deprecated)</sup>
ListItem(value?: string)
从API version 10开始, 该接口不再维护,推荐使用
方法1
。
从API version 10开始, 该接口不再维护,推荐使用
[
ListItem<sup>10+</sup>
](
#listitem10
)
。
**参数:**
| 参数名 | 参数类型 | 必填 | 参数描述 |
| ------ | ----------------------------- | ---- | -------- |
| value | string
<sup>
(deprecated)
</sup>
| 否 | 无 |
| value | string | 否 | 无 |
## 属性
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录