{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "uni-app",
"app-plus":{
"titleNView": false,
"subNVues": [
{
"id": "tabBar", //唯一标识
"path": "pages/index/sub",
"style": {
"position":"dock",
"dock": "bottom",
"width": "100%",
"height": "50px",
"zindex": 97999999
}
}
]
}
}
}
父页面
onShow(){
var that = this;
// #ifdef APP-PLUS
var currentWebview = this.$mp.page.$getAppWebview(); //获取当前web-view
setTimeout(function() {
var wv = currentWebview.children()[0];
wv.setStyle({ //设置web-view距离顶部的距离以及自己的高度,单位为px
top: uni.getSystemInfoSync().statusBarHeight,
})
}, 1000);
// #endif
},
子页面:
<view class="tab">
我是底部导航栏
</view>