提交 6695421e 编写于 作者: d-u-a's avatar d-u-a

fix: app平台 app.vue 生命周期 onshow 无参数问题

上级 2c1b2211
......@@ -52,8 +52,15 @@ export default function initOn (on, {
callCurrentPageHook('onHide')
}
function onAppEnterForeground () {
callAppHook(getApp(), 'onShow')
function onAppEnterForeground () {
const pages = getCurrentPages()
const page = pages[pages.length - 1]
const args = {
path: page.route,
query: page.options
}
callAppHook(getApp(), 'onShow', args)
callCurrentPageHook('onShow')
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册