fix: the events bug of AdvanceTable.vue;

修复:AdvanceTable.vue 组件的事件问题;
This commit is contained in:
chenghongxing 2020-10-06 16:50:25 +08:00
parent 3619242076
commit 501bd23c20

View File

@ -160,7 +160,7 @@
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen()
} else if (document.msExitFullscreen) {
document.msExiFullscreen()
document.msExitFullscreen()
}
this.$refs.table.classList.remove('beauty-scroll')
},
@ -171,10 +171,10 @@
this.$emit('expandedRowsChange', expandedRows)
},
onChange(pagination, filters, sorter, options) {
this.$emit('expandedRowsChange', pagination, filters, sorter, options)
this.$emit('change', pagination, filters, sorter, options)
},
onExpand(expanded, record) {
this.$emit('expandedRowsChange', expanded, record)
this.$emit('expand', expanded, record)
},
addListener() {
document.addEventListener('fullscreenchange', this.fullScreenListener)