From 52259f6d957a07ce90b70cc415aa7e5e57129bc1 Mon Sep 17 00:00:00 2001 From: l00613276 Date: Thu, 27 Jul 2023 19:40:27 +0800 Subject: [PATCH] update docs Signed-off-by: l00613276 --- .../apis/js-apis-arkui-performancemonitor.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-arkui-performancemonitor.md b/zh-cn/application-dev/reference/apis/js-apis-arkui-performancemonitor.md index 495ee323a5..0bdedec864 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-arkui-performancemonitor.md +++ b/zh-cn/application-dev/reference/apis/js-apis-arkui-performancemonitor.md @@ -12,7 +12,7 @@ ## 导入模块 ```ts -import performanceMonitor from '@ohos.arkui.performanceMonitor' +import performanceMonitor from '@ohos.arkui.performanceMonitor'; ``` @@ -20,7 +20,6 @@ import performanceMonitor from '@ohos.arkui.performanceMonitor' 用户场景触发模式枚举。 - **系统能力:** SystemCapability.ArkUI.ArkUI.Full | 名称 | 值 | 说明 | @@ -40,11 +39,12 @@ begin(scene: string, startInputType: ActionType, note?: string): void **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** + | 参数名 | 类型 | 必填 | 说明 | | -- | -- | -- | -- | -| scene | string | 是 | 用户场景id | -| startInputType | [ActionType](#actiontype)| 是 | 用户场景触发模式 | -| note | string| 否 | 用户场景重要信息 | +| scene | string | 是 | 用户场景id。 | +| startInputType | [ActionType](#actiontype)| 是 | 用户场景触发模式。 | +| note | string| 否 | 用户场景重要信息。 | **示例:** ```ts @@ -54,7 +54,7 @@ performanceMonitor.begin("LAUNCHER_APP_LAUNCH_FROM_ICON", performanceMonitor.Act ## performanceMonitor.end -end(scene: string): void; +end(scene: string): void 用户场景结束 @@ -63,7 +63,7 @@ end(scene: string): void; **参数:** | 参数名 | 类型 | 必填 | 说明 | | -- | -- | -- | -- | -| scene | string | 是 | 用户场景id,与begin配对 | +| scene | string | 是 | 用户场景id,与begin配对。 | **示例:** ```ts -- GitLab