From 38acb99ad91af5255d331e8e233a2e4e0d959e1d Mon Sep 17 00:00:00 2001 From: xuzhihao Date: Wed, 25 May 2022 16:17:59 +0800 Subject: [PATCH] Fix issues of Notification docs Signed-off-by: xuzhihao --- zh-cn/application-dev/reference/apis/js-apis-notification.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-notification.md b/zh-cn/application-dev/reference/apis/js-apis-notification.md index ad552f645b..2c24a38ab6 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-notification.md +++ b/zh-cn/application-dev/reference/apis/js-apis-notification.md @@ -185,7 +185,7 @@ Notification.cancel(0, "label", cancelCallback) ## Notification.cancel -cancel(id:number, label?: string): Promise\ +cancel(id: number, label?: string): Promise\ 取消与指定id相匹配的已发布通知,label可以指定也可以不指定(Promise形式)。 @@ -2614,7 +2614,7 @@ Notification.cancelAsBundle(0, representativeBundle, userId, publishCallback); ## Notification.cancelAsBundle9+ -cancelAsBundle(request: NotificationRequest, representativeBundle: string, userId: number): Promise\ +cancelAsBundle(id: number, representativeBundle: string, userId: number): Promise\ 发布代理通知(Promise形式)。 @@ -3212,6 +3212,7 @@ Notification.subscribe(subscriber, subscribeCallback); | lightEnabled | 是 | 是 | boolean | 否 | 是否闪灯。 | | lightColor | 是 | 是 | number | 否 | 通知灯颜色。 | | vibrationValues | 是 | 是 | Array\ | 否 | 通知振动样式。 | +| enabled | 是 | 否 | boolean | 否 | 此通知插槽中的启停状态。 | ## NotificationSorting -- GitLab