uniapp 返回

风雪中de冲破發表於2024-08-15

uniapp 1.點選手機左上角的返回

1.點選手機左上角的返回 用 onUnload 去監聽

onUnload(() => {
const isScan = uni.getStorageSync('wxScans')
clearInterval(state.timeQuestions)
state.timeQuestions = null
if (isScan && isScan == 'true' && !isBack.value) {
uni.switchTab({
url: '/pages/load/index'
})
// uni.switchTab({
// url: '/pages/index/index'
// })
}
})
2.監聽每一個頁面中的 點選右上角圓圈關閉 用 onHide 方法
在全域性的 App.vue 中 用 onHide 方法
onHide(() => {
uni.removeStorageSync('isBack')
uni.removeStorageSync('isChoose')
})
3.每次都需要跳轉請求 用 onShow 方法
onShow(() => {
bgShow.value = false
bgShowTwo.value = false
})

相關文章