You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1000 B

---
order: 10
title:
en-US: border, title and footer
zh-CN: 基本用法
---
9 years ago
## zh-CN
添加表格边框线,页头和页脚。
9 years ago
## en-US
Add border, title and footer for table.
9 years ago
````jsx
import { Table } from 'antd';
const columns = [{
9 years ago
title: '姓名',
dataIndex: 'name',
render: text => <a href="#">{text}</a>,
9 years ago
}, {
title: '资产',
className: 'column-money',
dataIndex: 'money',
9 years ago
}, {
title: '住址',
dataIndex: 'address',
9 years ago
}];
const data = [{
key: '1',
9 years ago
name: '胡彦斌',
money: '¥300,000.00',
address: '西湖区湖底公园1号',
9 years ago
}, {
key: '2',
9 years ago
name: '胡彦祖',
money: '¥1,256,000.00',
address: '西湖区湖底公园1号',
9 years ago
}, {
key: '3',
9 years ago
name: '李大嘴',
money: '¥120,000.00',
address: '西湖区湖底公园1号',
9 years ago
}];
ReactDOM.render(
<Table
columns={columns}
dataSource={data}
bordered
title={() => '页头'}
footer={() => '页脚'}
/>
, mountNode);
9 years ago
````
````css
.column-money {
text-align: right;
}
````