Former-commit-id: 3b77e62fab4ebcc6240c5583921109cb440ac040 [formerly 3b77e62fab4ebcc6240c5583921109cb440ac040 [formerly 3b77e62fab4ebcc6240c5583921109cb440ac040 [formerly 3b77e62fab4ebcc6240c5583921109cb440ac040 [formerly b23640838d125a94b88f1f1251a58ab7ee8192b4 [formerly 95206821db3f98a24808708e18b6f3229f5c5081]]]]] Former-commit-id: b418bd5953c02fc5a128edaea6814a82f759a0b4 Former-commit-id: f653dd9ca82a56576dd70ac5c41f84766c77c8aa Former-commit-id: 4b9dd2a4dabc9c475eaa0aaff2d6a803a869ac18 [formerly 11ee19bc2f6791a9a2f755123e021c39ae238498] Former-commit-id: 2d897b6562f9cc25db215868600c9e0750abc995 Former-commit-id: 064842b388029046538160bec1e4da87c29d97af Former-commit-id: 877956cf441d92621e67a9827296afb15e0aa887 Former-commit-id: 4c4d5278eafde4bbf84eae6f5991f17de3228856 Former-commit-id: 73e53f2f1768b12320346573f277b0f9fc4521c7
124 lines
4.4 KiB
Vue
124 lines
4.4 KiB
Vue
<template>
|
||
<div class="d2-theme-header-menu" ref="page" :class="{'is-scrollable': isScroll}" flex="cross:center">
|
||
<div class="d2-theme-header-menu__content" ref="content" flex-box="1" flex>
|
||
<div class="d2-theme-header-menu__scroll" ref="scroll" flex-box="0" :style="'transform: translateX(' + currentTranslateX + 'px);'">
|
||
<el-menu mode="horizontal" :default-active="active" @select="handleMenuSelect">
|
||
<template v-for="(menu, menuIndex) in header">
|
||
<d2-layout-header-aside-menu-item v-if="menu.children === undefined" :menu="menu" :key="menuIndex"/>
|
||
<d2-layout-header-aside-menu-sub v-else :menu="menu" :key="menuIndex"/>
|
||
</template>
|
||
</el-menu>
|
||
</div>
|
||
</div>
|
||
<div v-if="isScroll" class="d2-theme-header-menu__prev" flex-box="0" @click="scroll('left')" flex="main:center cross:center">
|
||
<i class="el-icon-arrow-left"></i>
|
||
</div>
|
||
<div v-if="isScroll" class="d2-theme-header-menu__next" flex-box="0" @click="scroll('right')" flex="cross:center">
|
||
<i class="el-icon-arrow-right"></i>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { throttle } from 'lodash'
|
||
import { mapState } from 'vuex'
|
||
import menuMixin from '../mixin/menu'
|
||
import d2LayoutMainMenuItem from '../components/menu-item/index.vue'
|
||
import d2LayoutMainMenuSub from '../components/menu-sub/index.vue'
|
||
export default {
|
||
name: 'd2-layout-header-aside-menu-header',
|
||
mixins: [
|
||
menuMixin
|
||
],
|
||
components: {
|
||
'd2-layout-header-aside-menu-item': d2LayoutMainMenuItem,
|
||
'd2-layout-header-aside-menu-sub': d2LayoutMainMenuSub
|
||
},
|
||
computed: {
|
||
...mapState('d2admin/menu', [
|
||
'header'
|
||
])
|
||
},
|
||
data () {
|
||
return {
|
||
active: '',
|
||
isScroll: false,
|
||
scrollWidth: 0,
|
||
contentWidth: 0,
|
||
currentTranslateX: 0,
|
||
throttledCheckScroll: null
|
||
}
|
||
},
|
||
watch: {
|
||
'$route.matched': {
|
||
handler (val) {
|
||
this.active = val[val.length - 1].path
|
||
},
|
||
immediate: true
|
||
}
|
||
},
|
||
methods: {
|
||
scroll (direction) {
|
||
if (direction === 'left') {
|
||
// 向右滚动
|
||
this.currentTranslateX = 0
|
||
} else {
|
||
// 向左滚动
|
||
if (this.contentWidth * 2 - this.currentTranslateX <= this.scrollWidth) {
|
||
this.currentTranslateX -= this.contentWidth
|
||
} else {
|
||
this.currentTranslateX = this.contentWidth - this.scrollWidth
|
||
}
|
||
}
|
||
},
|
||
checkScroll () {
|
||
let contentWidth = this.$refs.content.clientWidth
|
||
let scrollWidth = this.$refs.scroll.clientWidth
|
||
if (this.isScroll) {
|
||
// 页面依旧允许滚动的情况,需要更新width
|
||
if (this.contentWidth - this.scrollWidth === this.currentTranslateX) {
|
||
// currentTranslateX 也需要相应变化【在右端到头的情况时】
|
||
this.currentTranslateX = contentWidth - scrollWidth
|
||
// 快速的滑动依旧存在判断和计算时对应的contentWidth变成正数,所以需要限制一下
|
||
if (this.currentTranslateX > 0) {
|
||
this.currentTranslateX = 0
|
||
}
|
||
}
|
||
// 更新元素数据
|
||
this.contentWidth = contentWidth
|
||
this.scrollWidth = scrollWidth
|
||
// 判断何时滚动消失: 当scroll > content
|
||
if (contentWidth > scrollWidth) {
|
||
this.isScroll = false
|
||
}
|
||
}
|
||
// 判断何时滚动出现: 当scroll < content
|
||
if (!this.isScroll && contentWidth < scrollWidth) {
|
||
this.isScroll = true
|
||
// 注意,当isScroll变为true,对应的元素盒子大小会发生变化
|
||
this.$nextTick(() => {
|
||
contentWidth = this.$refs.content.clientWidth
|
||
scrollWidth = this.$refs.scroll.clientWidth
|
||
this.contentWidth = contentWidth
|
||
this.scrollWidth = scrollWidth
|
||
this.currentTranslateX = 0
|
||
})
|
||
}
|
||
}
|
||
},
|
||
mounted () {
|
||
// 初始化判断
|
||
// 默认判断父元素和子元素的大小,以确定初始情况是否显示滚动
|
||
window.addEventListener('load', this.checkScroll)
|
||
// 全局窗口变化监听,判断父元素和子元素的大小,从而控制isScroll的开关
|
||
this.throttledCheckScroll = throttle(this.checkScroll, 300)
|
||
window.addEventListener('resize', this.throttledCheckScroll)
|
||
},
|
||
beforeDestroy () {
|
||
// 取消监听
|
||
window.removeEventListener('resize', this.throttledCheckScroll)
|
||
window.removeEventListener('load', this.checkScroll)
|
||
}
|
||
}
|
||
</script>
|