在页面的wxss里面写height:100%;没法占满屏幕, 在app.wxss 写page height:100%; 又会影响全局
可以写成这样
wxml :
<view class="background-color"></view>
wxss :
.background-color{
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
background-color: #f5f5f5; //你要设置的颜色
}
或者封装成组件,传color