赞
踩
手册提供了 --window-bottom 变量,本来说在每个页面都去写,但是发现太麻烦了,就利用css的after直接在主组件中(App.vue文件)添加即可,代码如下:
<style lang="scss">
page {
background-color: #f9f9f9;
position: relative;
}
page>uni-view:first-child::after {
content: '';
position: relative;
height: var(--window-bottom);
width: 100%;
}
</style>
这样就不用在每个页面都要去写一次了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。