let pages = getCurrentPages();
let prevPage = pages[pages.length - 2]; // Get the previous page instance object
console.log(prevPage) //Print information
// Execute the required method in the success callback
wx.navigateBack({
delta: 1, // Return to the previous page
success: function() {
//Modify the property value of the previous page
prevPage.setData({
qiehuan: false
})
//Execute the previous page method
prevPage.errorAddressToast();
},
fail: function() {
// Return the logic when it fails
}
});