提交 56a9cbc6 编写于 作者: zhujiamin's avatar zhujiamin

beforeDestroy清除事件 --fix1

上级 686ef4dc
...@@ -878,13 +878,11 @@ ...@@ -878,13 +878,11 @@
*/ */
public mounted(){ public mounted(){
let list:any = this.$refs.mdctrl; let list:any = this.$refs.mdctrl;
setTimeout(() => { if(list){
if(list){ list.addEventListener('touchend',()=>{
list.addEventListener('touchend',()=>{ this.$store.commit('setPopupStatus',true)
this.$store.commit('setPopupStatus',true) })
}) }
}
}, 500);
} }
/** /**
...@@ -894,13 +892,11 @@ ...@@ -894,13 +892,11 @@
*/ */
public beforeDestroy(){ public beforeDestroy(){
let list:any = this.$refs.mdctrl; let list:any = this.$refs.mdctrl;
setTimeout(() => { if(list){
if(list){ list.removeEventListener('touchend',()=>{
list.removeEventListener('touchend',()=>{ this.$store.commit('setPopupStatus',true)
this.$store.commit('setPopupStatus',true) })
}) }
}
}, 500);
} }
/** /**
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册