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

106 lines
1.8 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
```tsx
2022-05-23 14:37:16 +08:00
import { Space, Table, Tag } from 'antd';
2022-07-04 22:09:54 +08:00
import type { ColumnsType } from 'antd/es/table';
2022-05-23 14:37:16 +08:00
import React from 'react';
2015-10-02 16:31:51 +08:00
interface DataType {
key: string;
name: string;
age: number;
address: string;
tags: string[];
}
const columns: ColumnsType<DataType> = [
2019-05-07 14:57:32 +08:00
{
title: 'Name',
dataIndex: 'name',
key: 'name',
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: (_, record) => (
2020-05-03 19:46:52 +08:00
<Space size="middle">
<a>Invite {record.name}</a>
<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
const data: DataType[] = [
2019-05-07 14:57:32 +08:00
{
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
const App: React.FC = () => <Table columns={columns} dataSource={data} />;
export default App;
2019-05-07 14:57:32 +08:00
```