uniapp微信小程序如何隐藏左上角返回按钮
例如要隐藏verificationRecord.vue页面的返回按钮
1、在跳转前的页面使用wx.reLaunch:
wx.reLaunch({
url:'./verificationRecord'
})
2、在verificationRecord.vue页面:
onShow(()=>{
//隐藏返回按钮
wx.hideHomeButton();
})
例如要隐藏verificationRecord.vue页面的返回按钮
1、在跳转前的页面使用wx.reLaunch:
wx.reLaunch({
url:'./verificationRecord'
})
2、在verificationRecord.vue页面:
onShow(()=>{
//隐藏返回按钮
wx.hideHomeButton();
})