第一种

在app.vue的页面中设置全局css样式属性

//第一种
	scroll-view ::-webkit-scrollbar {  
	    display: none !important;  
	    width: 0 !important;  
	    height: 0 !important;  
	    -webkit-appearance: none;  
	    background: transparent;  
	}
	//第二种
	::-webkit-scrollbar{
		  display: none;
	}

第二种

在page.json设置默认属性

//第一种 这是app的不显示滚动条可以在当前页面中添加
	"app-plus":{
		"scrollIndicator":"none" //当前页面不显示滚动条
			}
			//也可以直接(不知道生效不生效,我俩种全搞上)
			"scrollIndicator": "none"
//示例代码
{
		"path": "pages/content/index",
		"style": {
			"navigationBarTitleText": "",
				"app-plus":{
				"scrollIndicator":"none" //当前页面不显示滚动条
							},
	 	"scrollIndicator": "none"
		}
	}
	//第二种 直接全局搞就ok  
		"globalStyle": {
		"navigationBarTextStyle": "black",
		"navigationBarTitleText": "我是王小白",
		"navigationBarBackgroundColor": "#F8F8F8",
		"backgroundColor": "#F8F8F8",
"scrollIndicator": "none",
			"app-plus":{
					"scrollIndicator":"none" //全局 在APP页面都不显示滚动条
				}
	}

不过不知道为啥有些页面这些不起效果,小白我真的无能为力了,前端路漫漫,未进者慎重慎重!!!

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐