ant-design/components/table/demo/basic.md

81 lines
1.4 KiB
Markdown
Raw Normal View History

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-09 11:41:36 +08:00
2016-08-15 08:07:03 +08:00
## en-US
Simple table with actions.
2016-08-15 08:07:03 +08:00
2017-02-13 10:55:53 +08:00
````jsx
2018-08-18 12:48:56 +08:00
import { Table, Divider, Tag } from 'antd';
2015-10-02 16:31:51 +08:00
const columns = [{
title: 'Name',
2015-07-15 10:47:47 +08:00
dataIndex: 'name',
2015-12-16 16:35:56 +08:00
key: 'name',
2018-04-11 15:15:24 +08:00
render: text => <a href="javascript:;">{text}</a>,
2015-07-09 11:41:36 +08:00
}, {
title: 'Age',
2015-12-16 16:35:56 +08:00
dataIndex: 'age',
key: 'age',
2015-07-09 14:51:48 +08:00
}, {
title: 'Address',
2015-12-16 16:35:56 +08:00
dataIndex: 'address',
key: 'address',
2018-08-18 12:48:56 +08:00
}, {
title: 'Tags',
key: 'tags',
dataIndex: 'tags',
render: tags => (
<span>
2019-01-29 18:26:21 +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>;
})}
2018-08-18 12:48:56 +08:00
</span>
),
}, {
title: 'Action',
key: 'action',
2016-05-06 20:59:09 +08:00
render: (text, record) => (
<span>
2018-08-18 12:48:56 +08:00
<a href="javascript:;">Invite {record.name}</a>
<Divider type="vertical" />
2018-04-11 15:15:24 +08:00
<a href="javascript:;">Delete</a>
2016-05-06 20:59:09 +08:00
</span>
),
2015-07-09 11:41:36 +08:00
}];
2016-05-06 20:59:09 +08:00
const data = [{
2015-08-28 15:22:09 +08:00
key: '1',
name: 'John Brown',
2015-07-09 14:51:48 +08:00
age: 32,
address: 'New York No. 1 Lake Park',
2018-08-18 12:48:56 +08:00
tags: ['nice', 'developer'],
2015-07-09 11:41:36 +08:00
}, {
2015-08-28 15:22:09 +08:00
key: '2',
name: 'Jim Green',
2015-07-09 14:51:48 +08:00
age: 42,
address: 'London No. 1 Lake Park',
2018-08-18 12:48:56 +08:00
tags: ['loser'],
2015-07-09 11:41:36 +08:00
}, {
2015-08-28 15:22:09 +08:00
key: '3',
name: 'Joe Black',
2015-07-09 14:51:48 +08:00
age: 32,
address: 'Sidney No. 1 Lake Park',
2018-08-18 12:48:56 +08:00
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);
2015-07-09 11:41:36 +08:00
````