ab-plugin-notificaiton 提醒模块
# ab-plugin-notificaiton 提醒模块
1.引入
import { Notification } from '@agree/ab-plugin-notificaiton';
2.使用
# beep -- 设备响铃
支持移动渠道
let times= 3;
Notification.beep(times);
参数 | 类型 | 必填参数 | 说明 |
---|---|---|---|
times | number | √ | 蜂鸣次数 |
对应移动原SDK: AgreeSDK.notification.beep()
# vibrate -- 设备震动
支持移动渠道
let time= 3*1000;
Notification.vibrate(time);
参数 | 类型 | 必填参数 | 说明 |
---|---|---|---|
time | number | √ | 震动毫秒数 |
对应移动原SDK: AgreeSDK.notification.vibrate()
# cancelVibration -- 取消震动
支持移动渠道
Notification.cancelVibration();
对应移动原SDK: AgreeSDK.notification.cancelVibration()