fix: 固定表头时高度多 38 像素
#Comment Table Body 样式 margin-top: -38px 导致
This commit is contained in:
parent
65fda668bf
commit
533498797a
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue