作者:mobiledu2502910203 | 来源:互联网 | 2023-09-01 18:41
一、指定页面的json文件文件中 设置自定义:
{
"navigationStyle": "custom"
}
二、指定页面的wxml文件中自定义导航内容信息:
{{cusTitle}}
// 样式自定义
// backClick 自定义顶部返回事件
三、指定页面的wxss中自定义样式:
.box {
background: #FFF;
font-weight: 500;
width: 100%;
position: fixed;
top: 0;
right: 0;
z-index: 999;
}
.nav {
width: 100%;
font-size: 30rpx;
}
.nav image {
width: 36rpx;
height: 36rpx;
margin-top: 26rpx;
float: left;
margin-left: 15rpx;
}
.nav text {
float: left;
margin-left: 260rpx;
}
四、设置导航高度:
data: {
cusTitle: '导航标题',
statusBarHeight: 0, //状态栏初始高度
toBarHeight: 44, //标题栏高度:安卓:48px,iOS:44px;单位必需跟胶囊按钮一致,用px
}
onLoad: function (options) {
// 手机状态栏的高度
let sysinfo = wx.getSystemInfoSync();
this.setData({
statusBarHeight: sysinfo.statusBarHeight
})
}