+
80
-

uniapp如何禁止app横屏,app保持竖屏?

uniapp如何禁止app横屏,app保持竖屏?


网友回复

+
0
-

在app.vue的onlanch中增加

onLaunch: function() {
		console.log('App Launch')
// #ifdef APP-PLUS
		plus.screen.lockOrientation("portrait-primary")
 // #endif
},

或者修改manifest文件的app-plus下增加以下代码

"app-plus" : {
	"distribute" :{

		"distribute" : {
			"orientation" : [ "portrait-primary"]
		},
	}
}

800_auto

我知道答案,我要回答