mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
fix: the events bug of AdvanceTable.vue;
修复:AdvanceTable.vue 组件的事件问题;
This commit is contained in:
parent
3619242076
commit
501bd23c20
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user