uniapp applet—forbid ios sliding

Requirement: Solve the sliding effect that comes with ios

<scroll-view 
	scroll-y="true" 
	class="content" 
	:enhanced="true"
	:bounces="false" 
	:show-scrollbar="false"
>
--  内容部分 --
</scroll-view>

in pages.json

"style" :
	{
    
    
		"disableScroll": true, 
	}

Guess you like

Origin blog.csdn.net/hzqzzz/article/details/128497571