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