navigateBack
// 返回上一页开始 let pages = getCurrentPages() //获取当前页面栈的信息 let prevPage = pages[pages.length - 2] //获取上一个页面 prevPage.setData({ //把需要回传的值保存到上一个页面 ispinglun: true, c_type: 1, currentTab:3 }); // 调用上一个页面的方法 // prevPage.nextClick() console.log('prevPage',prevPage) let stay=wx.navigateBack ({ delta:1 }) // 返回上一页结束 onShow: function () { console.log(this.data.ispinglun,this.data.currentTab,this.data.c_type) if (this.data.ispinglun) { // 这时的 ispinglun 在评论页改成了 true; this.setData({ ispinglun: false, currentTab:this.data.currentTab, c_type:this.data.c_type, }) } this.getchucanglist(1); //出入仓 },