Files
SmartParks_uniapp/utils/notify.js
liyuanchao a6245b29cd
Some checks failed
Uniapp 自动化打包 CI/CD / 打包 Uniapp 项目 (push) Has been cancelled
消息推送
2025-09-14 17:43:16 +08:00

15 lines
361 B
JavaScript

export function showNotification(title, content, extraData = {}) {
// App-Plus 平台
if (typeof plus !== 'undefined' && plus.push) {
plus.push.createMessage(content, extraData, function(result){
});
} else {
// H5 或其他平台,可以用 alert / toast 代替
uni.showToast({
title: content,
icon: 'none',
duration: 3000
})
}
}