fix: 修改查询后 表格不会到顶部的问题

This commit is contained in:
zhangyu
2020-11-16 15:16:39 +08:00
parent e735a380be
commit 6928b325de
15 changed files with 94 additions and 11 deletions

View File

@@ -487,7 +487,12 @@
'bottomBox.showSubList': function(n) {
let vm = this;
this.$bottomBoxWindow.showSubListWatch(vm, n);
}
},
tableData(){
if(this.$refs.dcTable&&this.$refs.dcTable.bodyWrapper){
this.$refs.dcTable.bodyWrapper.scrollTop = 0;
}
},
},
destroyed() {
window.onresize = null;