Commit 41eae8f5 authored by hbcui1984's avatar hbcui1984

解决iOS平台侧滑遮罩不隐藏的问题

parent 041aa61f
......@@ -93,6 +93,9 @@
mui.openWindow({
id: id,
url: this.href,
styles:{
zindex:2
},
waiting:{
autoShow:false
}
......
......@@ -37,6 +37,9 @@
});
mui.plusReady(function() {
if(mui.os.android){
plus.screen.lockOrientation("portrait-primary");
}
//处理侧滑导航,为了避免和子页面初始化等竞争资源,延迟加载侧滑页面;
setTimeout(function () {
menu= mui.preload({
......@@ -57,6 +60,7 @@
styles:{
left:'70%',
width:'30%',
zindex:1,
opacity:0.1
}
});
......
......@@ -440,7 +440,8 @@
url:header,
id:name+"-main",
styles:{
popGesture:"hide"
popGesture:"hide",
zindex:2
},
extras:{
mType: 'main'
......@@ -452,7 +453,8 @@
id:name+"-sub",
styles:{
top: '48px',
bottom: '0px'
bottom: '0px',
zindex:2
},
extras:{
mType: 'sub'
......@@ -521,6 +523,9 @@
mui.openWindow({
id: id,
url: this.href,
styles:{
zindex:2
},
waiting: {
autoShow: false
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment