更新
This commit is contained in:
+44
@@ -0,0 +1,44 @@
|
||||
function initPushNotification() {
|
||||
// 仅 App 端
|
||||
if (typeof plus !== 'undefined' && plus.push) {
|
||||
plus.globalEvent.addEventListener('newPath', ({ path }) => {
|
||||
if (!path) {
|
||||
return;
|
||||
}
|
||||
// 指定的页面为当前页面
|
||||
const pages = getCurrentPages();
|
||||
const currentPage = pages[pages.length - 1];
|
||||
if (currentPage &&
|
||||
currentPage.$page &&
|
||||
currentPage.$page.fullPath === path) {
|
||||
return;
|
||||
}
|
||||
// 简单起见,先尝试 navigateTo 跳转,失败后,再尝试 tabBar 跳转
|
||||
uni.navigateTo({
|
||||
url: path,
|
||||
fail(res) {
|
||||
if (res.errMsg.indexOf('tabbar') > -1) {
|
||||
uni.switchTab({
|
||||
url: path,
|
||||
fail(res) {
|
||||
console.error(res.errMsg);
|
||||
},
|
||||
});
|
||||
}
|
||||
else {
|
||||
console.error(res.errMsg);
|
||||
}
|
||||
},
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// @ts-expect-error
|
||||
uni.invokePushCallback({
|
||||
type: 'enabled',
|
||||
offline: true,
|
||||
});
|
||||
Promise.resolve().then(() => {
|
||||
initPushNotification();
|
||||
});
|
||||
+256
File diff suppressed because one or more lines are too long
+45
@@ -0,0 +1,45 @@
|
||||
function initPushNotification() {
|
||||
// 仅 App 端
|
||||
if (typeof plus !== 'undefined' && plus.push) {
|
||||
plus.globalEvent.addEventListener('newPath', ({ path }) => {
|
||||
if (!path) {
|
||||
return;
|
||||
}
|
||||
// 指定的页面为当前页面
|
||||
const pages = getCurrentPages();
|
||||
const currentPage = pages[pages.length - 1];
|
||||
if (currentPage &&
|
||||
currentPage.$page &&
|
||||
currentPage.$page.fullPath === path) {
|
||||
return;
|
||||
}
|
||||
// 简单起见,先尝试 navigateTo 跳转,失败后,再尝试 tabBar 跳转
|
||||
uni.navigateTo({
|
||||
url: path,
|
||||
fail(res) {
|
||||
if (res.errMsg.indexOf('tabbar') > -1) {
|
||||
uni.switchTab({
|
||||
url: path,
|
||||
fail(res) {
|
||||
console.error(res.errMsg);
|
||||
},
|
||||
});
|
||||
}
|
||||
else {
|
||||
console.error(res.errMsg);
|
||||
}
|
||||
},
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// @ts-expect-error
|
||||
uni.invokePushCallback({
|
||||
type: 'enabled',
|
||||
offline: true,
|
||||
});
|
||||
Promise.resolve().then(() => {
|
||||
initPushNotification();
|
||||
plus.push.setAutoNotification && plus.push.setAutoNotification(false);
|
||||
});
|
||||
Reference in New Issue
Block a user