antd 表格固定高度
时间: 2023-07-24 17:18:14 浏览: 151
你可以通过设置Table组件的scroll属性来实现表格固定高度。例如:
```jsx
import { Table } from 'antd';
const dataSource = [
{
key: '1',
name: 'John Brown',
age: 32,
address: 'New York No. 1 Lake Park',
},
{
key: '2',
name: 'Jim Green',
age: 42,
address: 'London No. 1 Lake Park',
},
{
key: '3',
name: 'Joe Black',
age: 32,
address: 'Sidney No. 1 Lake Park',
},
];
const columns = [
{
title: 'Name',
dataIndex: 'name',
key: 'name',
},
{
title: 'Age',
dataIndex: 'age',
key: 'age',
},
{
title: 'Address',
dataIndex: 'address',
key: 'address',
},
];
<Table
dataSource={dataSource}
columns={columns}
scroll={{ y: 240 }}
/>
```
在上面的例子中,设置了scroll属性的y值为240,表示表格的高度为240px。你可以根据实际情况调整该值。
阅读全文