You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.1 KiB

10 years ago
# 基本用法
- order: 0
简单的表格,最后一列是各种操作。
10 years ago
---
````jsx
import { Table, Icon } from 'antd';
const columns = [{
10 years ago
title: '姓名',
dataIndex: 'name',
render: function(text) {
9 years ago
return <a href="javascript:;">{text}</a>;
}
10 years ago
}, {
title: '年龄',
dataIndex: 'age'
}, {
title: '住址',
dataIndex: 'address'
}, {
title: '操作',
dataIndex: '',
render: function(text, record) {
return <span>
9 years ago
<a href="javascript:;">操作一</a>
<span className="ant-divider"></span>
<a href="javascript:;">操作二</a>
<span className="ant-divider"></span>
<a href="javascript:;" className="ant-dropdown-link">
更多 <Icon type="down" />
</a>
</span>;
}
10 years ago
}];
const data = [{
key: '1',
10 years ago
name: '胡彦斌',
age: 32,
address: '西湖区湖底公园1号'
10 years ago
}, {
key: '2',
10 years ago
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号'
10 years ago
}, {
key: '3',
10 years ago
name: '李大嘴',
age: 32,
address: '西湖区湖底公园1号'
10 years ago
}];
9 years ago
ReactDOM.render(<Table columns={columns} dataSource={data} />
10 years ago
, document.getElementById('components-table-demo-basic'));
````