From 090b4da995002f2e3eadcf671fc3d64611a9e4c2 Mon Sep 17 00:00:00 2001 From: luoying_ace_admin Date: Sat, 28 Jan 2023 16:58:05 +0800 Subject: [PATCH] revise docs Signed-off-by: luoying_ace_admin --- .../reference/apis/js-apis-router.md | 34 ------------------- .../arkui-ts/ts-basic-components-datapanel.md | 2 +- .../arkui-ts/ts-container-alphabet-indexer.md | 6 ++-- 3 files changed, 4 insertions(+), 38 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-router.md b/zh-cn/application-dev/reference/apis/js-apis-router.md index ef81b40f12..7f4a506276 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-router.md +++ b/zh-cn/application-dev/reference/apis/js-apis-router.md @@ -742,40 +742,6 @@ router.replace({ }); ``` -<<<<<<< HEAD -<<<<<<< HEAD -======= -## router.replace(deprecated) - -replace(options: RouterOptions, mode: RouterMode): void - -用应用内的某个页面替换当前页面,并销毁被替换的页面。 - -从API version9开始不再维护,建议使用[replaceUrl9+](#routerreplaceurl9) - -**系统能力:** SystemCapability.ArkUI.ArkUI.Lite - -**参数:** - -| 参数名 | 类型 | 必填 | 说明 | -| ------- | ------------------------------- | ---- | ---------- | -| options | [RouterOptions](#routeroptions) | 是 | 替换页面描述信息。 | -| mode | [RouterMode](#routermode9) | 是 | 跳转页面使用的模式。 | - -**示例:** - -```js -router.replace({ - url: 'pages/detail/detail', - params: { - data1: 'message' - } -}, router.RouterMode.Standard); -``` - ->>>>>>> ccc442cafb6fdfbbc989e4614e23fb9d48f34cc6 -======= ->>>>>>> b7ff5e905cd94af1b1d8c5d384704079dba71c6d ## router.enableAlertBeforeBackPage(deprecated) enableAlertBeforeBackPage(options: EnableAlertOptions): void diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-datapanel.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-datapanel.md index 6a5255d721..49309776f3 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-datapanel.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-datapanel.md @@ -24,7 +24,7 @@ DataPanel(options:{values: number[], max?: number, type?: DataPanelType}) | ----------------- | -------- | ----- | -------- | | values | number[] | 是 | 数据值列表,最多包含9个数据,大于9个数据则取前9个数据。若数据值小于0则置为0。 | | max | number | 否 | - max大于0,表示数据的最大值。
- max小于等于0,max等于value数组各项的和,按比例显示。
默认值:100 | -| type8+ | [DataPanelType](#datapaneltype枚举说明) | 否 | 数据面板的类型。
默认值:DataPanelType.Circle | +| type8+ | [DataPanelType](#datapaneltype枚举说明) | 否 | 数据面板的类型(不支持动态修改)。
默认值:DataPanelType.Circle | ## DataPanelType枚举说明 diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md index 169d33852c..0f51f9689d 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-alphabet-indexer.md @@ -35,9 +35,9 @@ AlphabetIndexer(value: {arrayValue: Array<string>, selected: number}) | selectedBackgroundColor | [ResourceColor](ts-types.md#resourcecolor) | 设置选中项背景颜色。
默认值:0x1F0A59F7。 | | popupBackground | [ResourceColor](ts-types.md#resourcecolor) | 设置提示弹窗背景色。
默认值:0xFFF1F3F5。 | | usingPopup | boolean | 设置是否使用提示弹窗。
默认值:false。 | -| selectedFont | [Font](ts-types.md#font) | 设置选中项文字样式。
默认值:
{
fontSize:10,
fontStyle:FontStyle.Normal,
fontWeight:FontWeight.Normal,
fontFamily:HarmonyOS Sans
} | -| popupFont | [Font](ts-types.md#font) | 设置提示弹窗字体样式。
默认值:
{
fontSize:10,
fontStyle:FontStyle.Normal,
fontWeight:FontWeight.Normal,
fontFamily:HarmonyOS Sans
} | -| font | [Font](ts-types.md#font) | 设置字母索引条默认字体样式。
默认值:
{
fontSize:10,
fontStyle:FontStyle.Normal,
fontWeight:FontWeight.Normal,
fontFamily:HarmonyOS Sans
} | +| selectedFont | [Font](ts-types.md#font) | 设置选中项文字样式。
默认值:
{
size:10,
style:FontStyle.Normal,
weight:FontWeight.Normal,
family:'HarmonyOS Sans'
} | +| popupFont | [Font](ts-types.md#font) | 设置提示弹窗字体样式。
默认值:
{
size:10,
style:FontStyle.Normal,
weight:FontWeight.Normal,
family:'HarmonyOS Sans'
} | +| font | [Font](ts-types.md#font) | 设置字母索引条默认字体样式。
默认值:
{
size:10,
style:FontStyle.Normal,
weight:FontWeight.Normal,
family:'HarmonyOS Sans'
} | | itemSize | string \| number | 设置字母索引条字母区域大小,字母区域为正方形,即正方形边长。不支持设置为百分比。
默认值:24.0。 | | alignStyle | IndexerAlign | 设置字母索引条弹框的对齐样式,支持弹窗显示在索引条右侧和左侧。
默认值:IndexerAlign.Right。 | | selected | number | 设置选中项索引值。
默认值:0。 | -- GitLab