Some checks failed
Uniapp 自动化打包 CI/CD / 打包 Uniapp 项目 (push) Has been cancelled
15 lines
361 B
JavaScript
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
|
|
})
|
|
}
|
|
} |