onLoad() {
// 进入当前页面 自动切换成固定横屏
// #ifdef APP-PLUS
plus.screen.lockOrientation("landscape-primary");
// #endif
},
onUnload() {
// 退出当前页面时 自动切换成竖屏
// #ifdef APP-PLUS
plus.screen.lockOrientation("portrait-primary");
// #endif
},
manifest.json中添加
"app-plus" : {
"orientation" : [
// 竖屏正方向
"portrait-primary",
// 竖屏反方向
"portrait-secondary",
// 横屏正方向
"landscape-primary",
// 横屏反方向
"landscape-secondary",
//自然方向
"default"
],