超過高度時滾動
Table 設置 scroll.y
,y 可以是數值也可以使用 calc
<Table
scroll={{ y: 'calc(100vh - 380px)' }}
columns={columns}
dataSource={data}
/>
固定高度
需要修改 CSS,min-height
設置固定高度
.ant-table-body {
min-height: calc(100vh - 380px);
background-color: #fff;
}