uni-app-ios prohibits page sliding (cannot scroll up and down the screen page)

Note :仅 APP 平台

在 pages.json 中进行配置
有些时候,我们需要将页面固定住,让用户无法下拉与滚动页面。

Global configuration

在 globalStyle 中进行配置,便是所有页面均有效。

"globalStyle": {
	"app-plus": {//app平台
		"bounce": "none"//禁止滚动
	}
},

Partial configuration

在该页面 style 中进行配置,仅对该页有效。

"path": "pages/login/login",
"style": {
	"app-plus": {//app平台
		"bounce": "none"//禁止滚动
	}
}

Guess you like

Origin blog.csdn.net/qq_45555960/article/details/113886188