2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 0
|
2016-08-15 07:54:01 +08:00
|
|
|
title:
|
|
|
|
en-US: Basic Usage
|
|
|
|
zh-CN: 基本用法
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-07-09 11:41:36 +08:00
|
|
|
|
2016-08-15 07:54:01 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-07-14 15:35:17 +08:00
|
|
|
简单的表格,最后一列是各种操作。
|
2015-07-09 11:41:36 +08:00
|
|
|
|
2016-08-15 08:07:03 +08:00
|
|
|
## en-US
|
|
|
|
|
2016-10-08 15:45:42 +08:00
|
|
|
Simple table with actions.
|
2016-08-15 08:07:03 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2020-05-03 19:46:52 +08:00
|
|
|
import { Table, Tag, Space } from 'antd';
|
2015-10-02 16:31:51 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
const columns = [
|
|
|
|
{
|
|
|
|
title: 'Name',
|
|
|
|
dataIndex: 'name',
|
|
|
|
key: 'name',
|
2019-08-14 19:36:59 +08:00
|
|
|
render: text => <a>{text}</a>,
|
2019-05-07 14:57:32 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Age',
|
|
|
|
dataIndex: 'age',
|
|
|
|
key: 'age',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Address',
|
|
|
|
dataIndex: 'address',
|
|
|
|
key: 'address',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Tags',
|
|
|
|
key: 'tags',
|
|
|
|
dataIndex: 'tags',
|
|
|
|
render: tags => (
|
2020-05-03 19:46:52 +08:00
|
|
|
<>
|
2019-05-07 14:57:32 +08:00
|
|
|
{tags.map(tag => {
|
|
|
|
let color = tag.length > 5 ? 'geekblue' : 'green';
|
|
|
|
if (tag === 'loser') {
|
|
|
|
color = 'volcano';
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<Tag color={color} key={tag}>
|
|
|
|
{tag.toUpperCase()}
|
|
|
|
</Tag>
|
|
|
|
);
|
|
|
|
})}
|
2020-05-03 19:46:52 +08:00
|
|
|
</>
|
2019-05-07 14:57:32 +08:00
|
|
|
),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Action',
|
|
|
|
key: 'action',
|
|
|
|
render: (text, record) => (
|
2020-05-03 19:46:52 +08:00
|
|
|
<Space size="middle">
|
|
|
|
<a>Invite {record.name}</a>
|
2019-08-14 19:36:59 +08:00
|
|
|
<a>Delete</a>
|
2020-05-03 19:46:52 +08:00
|
|
|
</Space>
|
2019-05-07 14:57:32 +08:00
|
|
|
),
|
|
|
|
},
|
|
|
|
];
|
2016-05-06 20:59:09 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
const data = [
|
|
|
|
{
|
|
|
|
key: '1',
|
|
|
|
name: 'John Brown',
|
|
|
|
age: 32,
|
|
|
|
address: 'New York No. 1 Lake Park',
|
|
|
|
tags: ['nice', 'developer'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: '2',
|
|
|
|
name: 'Jim Green',
|
|
|
|
age: 42,
|
|
|
|
address: 'London No. 1 Lake Park',
|
|
|
|
tags: ['loser'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: '3',
|
|
|
|
name: 'Joe Black',
|
|
|
|
age: 32,
|
|
|
|
address: 'Sidney No. 1 Lake Park',
|
|
|
|
tags: ['cool', 'teacher'],
|
|
|
|
},
|
|
|
|
];
|
2015-07-09 11:41:36 +08:00
|
|
|
|
2016-03-24 17:57:03 +08:00
|
|
|
ReactDOM.render(<Table columns={columns} dataSource={data} />, mountNode);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|