小程序 的自带返回按钮 自定义跳页
2019-02-28 本文已影响0人
加冰宝贝
onUnload: function () {//如果页面被卸载时被执行
this.gotoHomePage();
},
// 在订单详情 点击小程序的返回 自定其他跳页方法
gotoHomePage: function () {//自定义页面跳转方法
let that = this;
if (that.data.clickFlag) {
return;
} else {
that.setData({ clickFlag: true });
}
wx.navigateTo({
url: '../My_order/My_order',
});
},