时间:2019-05-03 来源:小程序工厂
卢***:
这个是不行的,tabBar的页面一定要在app.json配置好。但是其他页面一定要,你可以自己写一个跟tabBar一样的样式啊
武***:
如果自己写要怎么保证view一直浮动在最底部呢?
卢***:
这是基本布局的问题呀,用position: fixed;可以达到效果吧,反正点击跳回真的tabBar就好
.bottom-bar{
position: fixed;
bottom: 0;
left: 0;
padding: 5rpx 0 0;
background: #fff;
border-top: 1rpx solid #7A7E83;
}
.bottom-bar-item{
width: 250rpx;
text-align: center;
}
.item-img{
width: 100%;
}
.item-img image{
width: 52rpx;
height:52rpx;
vertical-align: middle;
}
.item-text{
font-size: 24rpx;
color: #7A7E83;
}
/*弹性盒模型*/
.box {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
武***:
谢谢啊!