antd table组件头部固定滚动
可以直接通过给组件一个最大高度然后通过穿透获取thead使用·position:sticky·固定头部即可
代码如下:
// html
<div class="table-box">
<a-table></a-table>
</div>
//css
.table-box{
height: calc(85vh - 200px);
overflow: hidden;
position: relative;
/deep/ .ant-table-thead{
position:sticky;
top : 0px;
z-index:!;
}
}