去掉小程序的返回按钮
之前页面调过来用
wx.redirectTo({
url: '/pages/waveComplete/waveComplete',
})
当前页面 json
"navigationStyle":"custom",
导航bar就没了
然后就自定义
<view class='conch_top {{isIos?"conch_top_ios":"conch_top_andriod"}}'>
顶部标题
</view>
.conch_top {
width: 100%;
height: 40rpx;
line-height: 40rpx;
text-align: center;
font-size: 32rpx;
font-weight: bold;
background: #FFF7F0;
padding-top: 50rpx;
}
.conch_top_ios {
}
.conch_top_andriod {
text-align: left;
text-indent: 40rpx;
padding-top: 80rpx;
font-weight: normal;
font-size: 32rpx;
}