微信小程序返回箭头跳转到指定页面
onUnload: function () { wx.reLaunch({ url: '../me/order-detail', }) },
//这里url搞相对路径
wx.reLaunch跳到新页面没有返回箭头
用wx.redirectTo,wx.navigateTo试试
onUnload: function () { wx.reLaunch({ url: '../me/order-detail', }) },
//这里url搞相对路径
wx.reLaunch跳到新页面没有返回箭头
用wx.redirectTo,wx.navigateTo试试