一、单个页面禁用
1.在page.json页面中找到对应页面配置中添加"popGesture": "none"
"style": {
"navigationBarTitleText": "试听详情"
"navigationStyle": "custom",
"disableSwipeBack": "true",
"app-plus": {
"popGesture": "none"
}
}
2.再去对应页面onLoad方法中添加
// ios侧滑返回功能(关闭)
plus.webview.currentWebview().setStyle({
'popGesture': 'none'
});
即可处理单个页面左滑禁用
二、整个项目禁用
在manifest.json页面中添加"popGesture": "none"
"app-plus" : {
"popGesture": "none", // 侧滑返回功能
}