提交 d03bce6e 编写于 作者: fxy060608's avatar fxy060608

fix(v3): iOS首页 redirectTo 或 reLaunch 到其他页面后,仍能侧滑返回的Bug (https://ask.dcloud.net.cn/question/89164)

上级 762a4a4c
......@@ -7530,6 +7530,10 @@ var serviceContext = (function () {
delete webviewStyle.popGesture;
}
if (routeOptions.meta.isQuit) { // 退出
webviewStyle.popGesture = plus.os.name === 'iOS' ? 'appback' : 'none';
}
// TODO 下拉刷新
if (path && routeOptions.meta.isNVue) {
......
......@@ -67,6 +67,10 @@ export function parseWebviewStyle (id, path, routeOptions = {}) {
delete webviewStyle.popGesture
}
if (routeOptions.meta.isQuit) { // 退出
webviewStyle.popGesture = plus.os.name === 'iOS' ? 'appback' : 'none'
}
// TODO 下拉刷新
if (path && routeOptions.meta.isNVue) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册