feat:app嵌套h5返回键

This commit is contained in:
liu.huiying@ebiz-digits.com
2025-03-14 18:29:36 +08:00
parent 5f25815b8e
commit 1e65f93685
3 changed files with 7 additions and 4 deletions

View File

@@ -43,8 +43,10 @@ router.beforeEach((to, from, next) => {
// 添加 Android 返回按钮监听方法
window.onAndroidBack = () => {
if (routerCanGoBack()) {
router.back(); // 使用 router.back() 而不是 router.goBack(),因为 Vue Router 使用 back() 方法
console.log('h5返回')
router.back();
} else {
console.log('app返回')
callAppGoBack(); // 调用 APP 的返回方法
}
};