tab页面含5个子页面,每个page页面配置文件中都设置成竖屏
"style": {
"navigationBarTitleText": "",
"pageOrientation": "portrait"
}
并且在代码中设置
onReady:function(){
// #ifdef APP-PLUS
plus.screen.lockOrientation('portrait-primary');
// #endif
},
跳转至另外一个B单独页面进行横屏设置:
onReady:function(){
// #ifdef APP-PLUS
plus.screen.lockOrientation('landscape-primary');
// #endif
},
onUnload:function(){
// #ifdef APP-PLUS
plus.screen.lockOrientation('portrait-primary');
// #endif
},
返回到tab页面时,切换tab页时经常出现 tab1 显示上半部分,tab2或其他显示下半部分,显示错乱。
3 个回复
4***@qq.com - 老程序员
问题解决了吗?后来你有没有因为这个问题弃坑?
8***@qq.com
问题解决了吗?
降龙十八掌
遇到同样问题