onClickMeeting() {
setTimeout(() => {
this.onClickMeeting1();
}, 1000); // 延迟一秒后设置徽章
},
onClickMeeting1() {
uni.createPushMessage({
icon: 'file://',
title: "信息通知1",
content: '会议记录 '
})
console.log('点击了会议记录');
console.log('plus对象:', plus.runtime.setBadgeNumber); // 检查plus对象是否可用
const option = {
title: "信息通知",
content: '会议记录 '
};
// 设置徽章数字
try {
if (typeof plus.runtime.setBadgeNumber === 'function') {
plus.runtime.setBadgeNumber(9, option);
console.log("徽章数字设置成功: 9");
} else {
console.warn("当前环境不支持设置徽章数字");
}
} catch (error) {
console.error("设置徽章数字时发生错误:", error);
}
console.log("手机pid", plus.runtime.appid);
},
2***@qq.com
- 发布:2024-10-14 16:07
- 更新:2024-10-14 16:07
- 阅读:140