perr: refine code

This commit is contained in:
花裤衩 2020-05-05 12:53:42 +08:00
parent 162cf1b186
commit 258f4b86d2
2 changed files with 13 additions and 8 deletions

View File

@ -19,12 +19,21 @@ export default {
return this.$refs.scrollContainer.$refs.wrap
}
},
mounted() {
this.scrollWrapper.addEventListener('scroll', this.emitScroll, true)
},
beforeDestroy() {
this.scrollWrapper.removeEventListener('scroll', this.emitScroll)
},
methods: {
handleScroll(e) {
const eventDelta = e.wheelDelta || -e.deltaY * 40
const $scrollWrapper = this.scrollWrapper
$scrollWrapper.scrollLeft = $scrollWrapper.scrollLeft + eventDelta / 4
},
emitScroll() {
this.$emit('scroll')
},
moveToTarget(currentTag) {
const $container = this.$refs.scrollContainer.$el
const $containerWidth = $container.offsetWidth

View File

@ -1,6 +1,6 @@
<template>
<div id="tags-view-container" class="tags-view-container">
<scroll-pane ref="scrollPane" class="tags-view-wrapper">
<scroll-pane ref="scrollPane" class="tags-view-wrapper" @scroll="handleScroll">
<router-link
v-for="tag in visitedViews"
ref="tag"
@ -46,9 +46,6 @@ export default {
},
routes() {
return this.$store.state.permission.routes
},
scrollWrapper() {
return this.$refs.scrollPane.$refs.scrollContainer.$refs.wrap
}
},
watch: {
@ -67,10 +64,6 @@ export default {
mounted() {
this.initTags()
this.addTags()
this.scrollWrapper.addEventListener('scroll', this.closeMenu, true)
},
beforeDestroy() {
document.removeEventListener('scroll', this.closeMenu)
},
methods: {
isActive(route) {
@ -196,6 +189,9 @@ export default {
},
closeMenu() {
this.visible = false
},
handleScroll() {
this.closeMenu()
}
}
}