Page({ data: { applyType: 0, mainButton: { buttonText: "主要操作" } }, onLoad(query) { var that = this; this.setData({ applyType: query.applyType }); }, goBack() { var that = this; wx.navigateBack(-1); // wx.switchTab({ // url: "../index/index" // }); // if (that.data.applyType == 0) { // wx.switchTab({ // url: "../index/index" // }); // } else { // wx.navigateBack(-2); // } }, goIndex(){ var that = this; wx.switchTab({ url: '../index/index', }) } });