2016-03-31 09:40:55 +08:00
|
|
|
---
|
2019-11-15 14:35:25 +08:00
|
|
|
order: 12
|
2016-08-15 07:54:01 +08:00
|
|
|
title:
|
|
|
|
en-US: border, title and footer
|
2016-11-14 14:26:08 +08:00
|
|
|
zh-CN: 带边框
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-08-11 20:05:52 +08:00
|
|
|
|
2016-08-15 07:54:01 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2016-07-21 15:14:42 +08:00
|
|
|
添加表格边框线,页头和页脚。
|
2015-08-11 20:05:52 +08:00
|
|
|
|
2016-08-15 08:07:03 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
Add border, title and footer for table.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Table } from 'antd';
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
const columns = [
|
|
|
|
{
|
|
|
|
title: 'Name',
|
|
|
|
dataIndex: 'name',
|
2019-08-14 19:36:59 +08:00
|
|
|
render: text => <a>{text}</a>,
|
2019-05-07 14:57:32 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Cash Assets',
|
|
|
|
className: 'column-money',
|
|
|
|
dataIndex: 'money',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Address',
|
|
|
|
dataIndex: 'address',
|
|
|
|
},
|
|
|
|
];
|
2015-08-11 20:05:52 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
const data = [
|
|
|
|
{
|
|
|
|
key: '1',
|
|
|
|
name: 'John Brown',
|
|
|
|
money: '¥300,000.00',
|
|
|
|
address: 'New York No. 1 Lake Park',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: '2',
|
|
|
|
name: 'Jim Green',
|
|
|
|
money: '¥1,256,000.00',
|
|
|
|
address: 'London No. 1 Lake Park',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: '3',
|
|
|
|
name: 'Joe Black',
|
|
|
|
money: '¥120,000.00',
|
|
|
|
address: 'Sidney No. 1 Lake Park',
|
|
|
|
},
|
|
|
|
];
|
2015-08-11 20:05:52 +08:00
|
|
|
|
2016-08-17 15:47:29 +08:00
|
|
|
ReactDOM.render(
|
|
|
|
<Table
|
|
|
|
columns={columns}
|
|
|
|
dataSource={data}
|
|
|
|
bordered
|
2016-10-02 08:38:16 +08:00
|
|
|
title={() => 'Header'}
|
|
|
|
footer={() => 'Footer'}
|
2018-06-27 15:55:04 +08:00
|
|
|
/>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|
2015-11-05 19:46:29 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```css
|
2017-03-22 20:24:48 +08:00
|
|
|
th.column-money,
|
|
|
|
td.column-money {
|
2017-08-04 17:58:32 +08:00
|
|
|
text-align: right !important;
|
2017-03-22 20:24:48 +08:00
|
|
|
}
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|