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

beforeDestroy清除事件 --fix1

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