vxe-table
Version:
一个基于 vue 的 PC 端表格组件,支持增删改查、虚拟滚动、懒加载、快捷菜单、数据校验、树形结构、打印导出、表单渲染、数据分页、虚拟列表、模态窗口、自定义模板、渲染器、贼灵活的配置项、扩展接口等...
101 lines (99 loc) • 3.42 kB
JavaScript
import { UtilTools } from '../../tools'
export default {
name: 'VxeTableContextMenu',
props: {
ctxMenuStore: Object,
ctxMenuOpts: Object
},
mounted () {
document.body.appendChild(this.$el)
},
beforeDestroy () {
const { $el } = this
if ($el.parentNode) {
$el.parentNode.removeChild($el)
}
},
render (h) {
const $xetable = this.$parent
const { ctxMenuOpts, ctxMenuStore } = this
return h('div', {
class: ['vxe-table--context-menu-wrapper', ctxMenuOpts.className],
style: ctxMenuStore.style
}, ctxMenuStore.list.map((options, gIndex) => {
return h('ul', {
class: 'vxe-context-menu--option-wrapper',
key: gIndex
}, options.map((item, index) => {
const hasChildMenus = item.children && item.children.length
return item.visible === false ? null : h('li', {
class: [item.className, {
'link--disabled': item.disabled,
'link--active': item === ctxMenuStore.selected
}],
key: `${gIndex}_${index}`
}, [
h('a', {
class: 'vxe-context-menu--link',
on: {
click (evnt) {
$xetable.ctxMenuLinkEvent(evnt, item)
},
mouseover (evnt) {
$xetable.ctxMenuMouseoverEvent(evnt, item)
},
mouseout (evnt) {
$xetable.ctxMenuMouseoutEvent(evnt, item)
}
}
}, [
h('i', {
class: ['vxe-context-menu--link-prefix', item.prefixIcon]
}),
h('span', {
class: 'vxe-context-menu--link-content'
}, UtilTools.getFuncText(item.name)),
h('i', {
class: ['vxe-context-menu--link-suffix', hasChildMenus ? item.suffixIcon || 'suffix--haschild' : item.suffixIcon]
})
]),
hasChildMenus ? h('ul', {
class: ['vxe-table--context-menu-clild-wrapper', {
'is--show': item === ctxMenuStore.selected && ctxMenuStore.showChild
}]
}, item.children.map((child, cIndex) => {
return child.visible === false ? null : h('li', {
class: [child.className, {
'link--disabled': child.disabled,
'link--active': child === ctxMenuStore.selectChild
}],
key: `${gIndex}_${index}_${cIndex}`
}, [
h('a', {
class: 'vxe-context-menu--link',
on: {
click (evnt) {
$xetable.ctxMenuLinkEvent(evnt, child)
},
mouseover (evnt) {
$xetable.ctxMenuMouseoverEvent(evnt, item, child)
},
mouseout (evnt) {
$xetable.ctxMenuMouseoutEvent(evnt, item, child)
}
}
}, [
h('i', {
class: ['vxe-context-menu--link-prefix', child.prefixIcon]
}),
h('span', {
class: 'vxe-context-menu--link-content'
}, UtilTools.getFuncText(child.name))
])
])
})) : null
])
}))
}))
}
}