作者:管理员 历史版本:1 最后编辑:龚清 更新时间:2024-11-20 15:41
基础功能
用于右键点击后显示菜单内容。
ibps-contextmenu代码中使用示例,此示例为菜单导航tab右键得展示效果。
<template>
<div class="ibps-multiple-page-control-group" flex>
<div class="ibps-multiple-page-control-content" flex-box="1">
<div class="ibps-multiple-page-control-content-inner">
<!--右键菜单-->
<ibps-contextmenu
ref="contextmenu"
:data="menulist"
:z-index="zIndex"
@click="handleContextmenuClick"
/>
...
</div>
</div>
</div>
</template>
<script>
import { mapState, mapActions } from 'vuex'
import Sortable from 'sortablejs'
import I18n from '@/utils/i18n'
import IbpsContextmenu from '@/components/ibps-contextmenu'
import PopupManager from '@/utils/popup'
import setting from '@/setting.js'
export default {
components: {
IbpsContextmenu
// IbpsContextmenuList
},
data() {
const defaultIndex = setting.page.opened[0]
return {
defaultIndex: defaultIndex,
zIndex: 100,
menulist: [],
tagName: defaultIndex.fullPath,
theme: '#485A75'
}
},
computed: {
...mapState('ibps/page', [
'opened',
'current'
]),
...mapState('ibps/color', [
'value'
]),
contextmenuListDashboard() {
return [
{ icon: 'TimeScircleO', label: this.$t('layout.header-aside.tags.closeOther'), key: 'all', color: '#485A75' }
]
},
contextmenuList() {
return [
{ icon: 'ArrowLefts', label: this.$t('layout.header-aside.tags.closeLeft'), key: 'left', color: '#485A75' },
{ icon: 'ArrowRights', label: this.$t('layout.header-aside.tags.closeRight'), key: 'right', color: '#485A75' },
{ divided: true },
{ icon: 'TimeScircleO', label: this.$t('layout.header-aside.tags.close'), key: 'close', color: '#485A75' },
{ icon: 'CloseOne', label: this.$t('layout.header-aside.tags.closeOther'), key: 'other', color: '#485A75' },
{ icon: 'TimesCircle', label: this.$t('layout.header-aside.tags.closeAll'), key: 'all', color: '#485A75' }
]
}
},
watch: {
value: {
handler: function(val) {
this.theme = val
},
immediate: true,
deep: true
}
},
mounted() {
const el = document.querySelectorAll('.ibps-multiple-page-sort .el-tabs__nav')[0]
Sortable.create(el, {
onEnd: (evt) => {
const { oldIndex, newIndex } = evt
this.openedSort({ oldIndex, newIndex })
}
})
},
beforeDestroy() {
this.menulist = null
},
methods: {
...mapActions('ibps/page', [
'close',
'closeLeft',
'closeRight',
'closeOther',
'closeAll',
'openedSort'
]),
mouseOver(index) {
this.contextmenuList[index].color = this.theme
},
mouseLeave(index) {
this.contextmenuList[index].color = '#485A75'
},
tabClosabele(page) {
return !(page.fullPath === this.defaultIndex.fullPath || page.name === this.defaultIndex.name)
},
generateTitle(name, title, ...values) {
return I18n.generateTitle(name, title, values)
},
/**
* 获取选择的节点
*/
getEventTarget(event) {
const target = event.target
if (target.className.indexOf('el-tabs__item') > -1) return target
else if (target.parentNode.className.indexOf('el-tabs__item') > -1) {
return target.parentNode
}
},
/**
* @description 右键菜单功能点击
*/
handleContextmenu(event) {
const target = this.getEventTarget(event)
if (target) {
event.preventDefault()
event.stopPropagation()
this.tagName = target.getAttribute('aria-controls').slice(5)
this.menulist = this.tagName === this.defaultIndex.fullPath || this.tagName === this.defaultIndex.name || this.tagName === '/refresh' ? this.contextmenuListDashboard : this.contextmenuList
this.zIndex = PopupManager.getZIndex()
this.$refs.contextmenu.handleContextMenu(event)
}
},
/**
* @description 右键菜单的row-click事件
*/
handleContextmenuClick(item) {
this.handleControlItemClick(item.key, this.tagName)
},
/**
* @description 接收点击关闭控制上选项的事件
*/
handleControlItemClick(command, tagName = null) {
const params = {
pageSelect: tagName
}
switch (command) {
case 'left':
this.closeLeft(params)
break
case 'right':
this.closeRight(params)
break
case 'other':
this.closeOther(params)
break
case 'all':
this.closeAll()
break
case 'close':
this.close(params)
break
default:
this.$message.closeAll()
this.$message.error('无效的操作')
break
}
},
/**
* @description 接收点击关闭控制上按钮的事件
*/
handleControlBtnClick() {
this.closeAll()
},
/**
* @description 接收点击 tab 标签的事件
*/
handleClick(tab, event) {
// 找到点击的页面在 tag 列表里是哪个
const page = this.opened.find(page => page.fullPath === tab.name)
if (page) {
const { name, params, query } = page
this.$router.push({ name, params, query })
}
},
/**
* @description 点击 tab 上的删除按钮触发这里
* @param {String} tagName tab 名称
*/
handleTabRemove(tagName) {
this.close({ pageSelect: tagName })
},
handleCloseSelectedTag(event) {
const target = this.getEventTarget(event)
if (target) {
const tagName = target.getAttribute('aria-controls').slice(5)
this.handleTabRemove(tagName)
}
},
/**
* @description 仅刷新当前router组件 不影响其他已缓存的组件
*/
handleRefresh() {
this.$router.push({ name: 'refresh' })
}
}
}
</script>
<style lang="scss">
// .dropdown_box{
// .dropdown-content{
// label{
// position: relative;
// margin-left: 10px;
// top: -1px;
// }
// }
// }
</style>