fix: 固定表头时高度多 38 像素

#Comment
Table Body 样式 margin-top: -38px 导致
This commit is contained in:
Argo Zhang 2020-01-22 22:21:10 +08:00
parent 65fda668bf
commit 533498797a
No known key found for this signature in database
GPG Key ID: 152E398953DDF19F
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@
if (source.hasClass('tab-content')) break;
}
while (source.length === 1);
height = $(window).height() - height - 15;
height = $(window).height() - height - 15 - 38;
table.height(height);
},
initTable: function (id, firstRender) {