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