提交 62c9d873 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

fix(app and h5): vue3 uni.navigateBack onBackPress e.from=undefined

上级 ed26f4ca
......@@ -29,7 +29,7 @@ export const navigateBack = defineAsyncApi<API_TYPE_NAVIGATE_BACK>(
}
if (
invokeHook(page as ComponentPublicInstance, ON_BACK_PRESS, {
from: (args as any).from,
from: (args as any).from || 'navigateBack',
})
) {
return resolve()
......
......@@ -12,7 +12,11 @@ export const navigateBack = defineAsyncApi<API_TYPE_NAVIGATE_BACK>(
API_NAVIGATE_BACK,
(args, { resolve, reject }) => {
let canBack = true
if (invokeHook(ON_BACK_PRESS, { from: (args as any).from }) === true) {
if (
invokeHook(ON_BACK_PRESS, {
from: (args as any).from || 'navigateBack',
}) === true
) {
canBack = false
}
if (!canBack) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册