当 tagsview 出现滚动条时,右击 tag 按钮,弹出右键菜单,此时拖动tagsview 滚动条时右键菜单没有消失, 用户体验不好。
修改如下: 当拖动tagsview 滚动条时,关闭右键菜单。
This commit is contained in:
parent
9d8c7edf91
commit
162cf1b186
|
@ -46,6 +46,9 @@ export default {
|
||||||
},
|
},
|
||||||
routes() {
|
routes() {
|
||||||
return this.$store.state.permission.routes
|
return this.$store.state.permission.routes
|
||||||
|
},
|
||||||
|
scrollWrapper() {
|
||||||
|
return this.$refs.scrollPane.$refs.scrollContainer.$refs.wrap
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
@ -64,6 +67,10 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
this.initTags()
|
this.initTags()
|
||||||
this.addTags()
|
this.addTags()
|
||||||
|
this.scrollWrapper.addEventListener('scroll', this.closeMenu, true)
|
||||||
|
},
|
||||||
|
beforeDestroy() {
|
||||||
|
document.removeEventListener('scroll', this.closeMenu)
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
isActive(route) {
|
isActive(route) {
|
||||||
|
|
Loading…
Reference in New Issue