diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-button.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-button.md
index c56c0a02fe2e8189cf473e3ca07ac7d4c7dcadcf..7c2ae62cd5cdf13a7b7dc45cb4820900052aa6b7 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-button.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-button.md
@@ -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 | 否 | 描述按钮显示样式。
默认值:ButtonType.Capsule |
| stateEffect | boolean | 否 | 按钮按下时是否开启按压态显示效果,当设置为false时,按压效果关闭。
默认值:true
**说明:**
当开启按压态显示效果,开发者设置状态样式时,会基于状态样式设置完成后的背景色再进行颜色叠加。 |
-**方法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)参数说明。 |
## 属性
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navrouter.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navrouter.md
index e4a9d52a930be72f90a5b18a258c79111c8bbf5e..a30bcd13c5acb228adcc75cbc0ccad1e1b8b5f20 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navrouter.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-navrouter.md
@@ -20,11 +20,15 @@
## 接口
-**方法1:** NavRouter()
+### NavRouter
-**方法2:** NavRouter(value: RouteInfo)10+
+NavRouter()
- 提供路由信息,指定点击NavRouter时,要跳转的NavDestination页面。
+### NavRouter10+
+
+NavRouter(value: RouteInfo)
+
+提供路由信息,指定点击NavRouter时,要跳转的NavDestination页面。
**参数:**
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md
index fb808bf398665fd34d6132ef11aa11fd2395e4a0..0097cf270dbd908f1fd8954bf248343b1d0db274 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md
@@ -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})10+
+### XComponent10+
+
+XComponent(value: {id: string, type: XComponentType, libraryname?: string, controller?: XComponentController})
**参数:**
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-badge.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-badge.md
index 21ea39dcf2741d81522bf64077c4beb25586fb1b..5a51810c8cdec3d05ac6057dd0688e363e04743b 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-container-badge.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-badge.md
@@ -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+。
默认值:99
取值范围:[-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})
根据字符串创建标记组件。
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-listitem.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-listitem.md
index e97115bb1e09f168b5a8db0290eb631a73ca29ce..1599de1c1ad5fb8664672173e0c6bbe2f4ca7264 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-container-listitem.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-listitem.md
@@ -15,7 +15,9 @@
从API version 9开始,该接口支持在ArkTS卡片中使用。
-**方法1:** ListItem(value?: ListItemOptions)10+
+### ListItem10+
+
+ListItem(value?: ListItemOptions)
**参数:**
@@ -23,15 +25,17 @@
| ------ | --------------------------------------------- | ---- | ------------------------------------------------------------ |
| value | [ListItemOptions](#listitemoptions10对象说明) | 否 | 为ListItem提供可选参数, 该对象内含有ListItemStyle枚举类型的style参数。 |
-**方法2:** ListItem(value?: string)(deprecated)
+### ListItem(deprecated)
+
+ListItem(value?: string)
-从API version 10开始, 该接口不再维护,推荐使用方法1。
+从API version 10开始, 该接口不再维护,推荐使用[ListItem10+](#listitem10)。
**参数:**
| 参数名 | 参数类型 | 必填 | 参数描述 |
| ------ | ----------------------------- | ---- | -------- |
-| value | string(deprecated) | 否 | 无 |
+| value | string | 否 | 无 |
## 属性