当 tagsview 出现滚动条时,右击 tag 按钮,弹出右键菜单,此时拖动tagsview 滚动条时右键菜单没有消失, 用户体验不好。

修改如下:

当拖动tagsview 滚动条时,关闭右键菜单。
This commit is contained in:
孙晓东 2020-04-16 13:41:06 +08:00
parent 9d8c7edf91
commit 162cf1b186
1 changed files with 7 additions and 0 deletions

View File

@ -46,6 +46,9 @@ export default {
},
routes() {
return this.$store.state.permission.routes
},
scrollWrapper() {
return this.$refs.scrollPane.$refs.scrollContainer.$refs.wrap
}
},
watch: {
@ -64,6 +67,10 @@ export default {
mounted() {
this.initTags()
this.addTags()
this.scrollWrapper.addEventListener('scroll', this.closeMenu, true)
},
beforeDestroy() {
document.removeEventListener('scroll', this.closeMenu)
},
methods: {
isActive(route) {