uni-app 微信小程序 导航栏 隐藏返回 隐藏小房子

问题 隐藏返回按钮

跳页方式

uni.navigateTo({url:"../warranty/warranty"})

uni-app 微信小程序 导航栏 隐藏返回 隐藏小房子_第1张图片

解决

更改跳页方式

wx.reLaunch() /uni.reLaunch()会隐藏返回 出现小房子

// uni-app
uni.reLaunch({url:"../warranty/warranty"})
// wx
wx.reLaunch({url:"../warranty/warranty"})

uni-app 微信小程序 导航栏 隐藏返回 隐藏小房子_第2张图片

隐藏小房子

// uni-app
uni.hideHomeButton()
// wx
wx.hideHomeButton();  

uni-app 微信小程序 导航栏 隐藏返回 隐藏小房子_第3张图片

代码

// wx.reLaunch() 会隐藏返回 出现小房子 
uni.reLaunch({url:"../warranty/warranty"})
uni.hideHomeButton()

你可能感兴趣的:(uni-app,微信小程序)