|
|
|
---
|
|
|
|
order: 0
|
|
|
|
title:
|
|
|
|
en-US: Basic Usage
|
|
|
|
zh-CN: 基本用法
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
简单的表格,最后一列是各种操作。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Simple table with actions.
|
|
|
|
|
|
|
|
```tsx
|
|
|
|
import { Space, Table, Tag } from 'antd';
|
|
|
|
import type { ColumnsType } from 'antd/lib/table';
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
interface DataType {
|
|
|
|
key: string;
|
|
|
|
name: string;
|
|
|
|
age: number;
|
|
|
|
address: string;
|
|
|
|
tags: string[];
|
|
|
|
}
|
|
|
|
|
|
|
|
const columns: ColumnsType<DataType> = [
|
|
|
|
{
|
|
|
|
title: 'Name',
|
|
|
|
dataIndex: 'name',
|
|
|
|
key: 'name',
|
|
|
|
render: text => <a>{text}</a>,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Age',
|
|
|
|
dataIndex: 'age',
|
|
|
|
key: 'age',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Address',
|
|
|
|
dataIndex: 'address',
|
|
|
|
key: 'address',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Tags',
|
|
|
|
key: 'tags',
|
|
|
|
dataIndex: 'tags',
|
|
|
|
render: (_, { tags }) => (
|
|
|
|
<>
|
|
|
|
{tags.map(tag => {
|
|
|
|
let color = tag.length > 5 ? 'geekblue' : 'green';
|
|
|
|
if (tag === 'loser') {
|
|
|
|
color = 'volcano';
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<Tag color={color} key={tag}>
|
|
|
|
{tag.toUpperCase()}
|
|
|
|
</Tag>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Action',
|
|
|
|
key: 'action',
|
|
|
|
render: (_, record) => (
|
|
|
|
<Space size="middle">
|
|
|
|
<a>Invite {record.name}</a>
|
|
|
|
<a>Delete</a>
|
|
|
|
</Space>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
const data: DataType[] = [
|
|
|
|
{
|
|
|
|
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'],
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
const App: React.FC = () => <Table columns={columns} dataSource={data} />;
|
|
|
|
|
|
|
|
export default App;
|
|
|
|
```
|