1、点击返回的这个页面触发一个事件,使用uni.$emit("handClickXXX",{})
uni.$emit("handClickXXX",{data: {name: 'zs'},index: 200});
2、在上一个页面的onShow中添加监听一个handClickXXX的事件
onShow() {
uni.$on("handClickXXX", res => {
console.log(res);
// 清除监听
uni.$off('handClickXXX');
})
},