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

59 lines
1.1 KiB
Markdown
Raw Normal View History

2015-07-09 11:41:36 +08:00
# 基本用法
- order: 0
简单的表格,最后一列是各种操作。
2015-07-09 11:41:36 +08:00
---
````jsx
import { Table, Icon } from 'antd';
2015-10-02 16:31:51 +08:00
const columns = [{
2015-07-09 11:41:36 +08:00
title: '姓名',
2015-07-15 10:47:47 +08:00
dataIndex: 'name',
render: function(text) {
2015-07-16 18:26:17 +08:00
return <a href="javascript:;">{text}</a>;
2015-07-15 10:47:47 +08:00
}
2015-07-09 11:41:36 +08:00
}, {
title: '年龄',
dataIndex: 'age'
2015-07-09 14:51:48 +08:00
}, {
title: '住址',
2015-07-15 10:47:47 +08:00
dataIndex: 'address'
}, {
title: '操作',
dataIndex: '',
render: function(text, record) {
return <span>
2015-07-16 18:26:17 +08:00
<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">
2015-10-02 16:31:51 +08:00
更多 <Icon type="down" />
</a>
</span>;
}
2015-07-09 11:41:36 +08:00
}];
const data = [{
2015-08-28 15:22:09 +08:00
key: '1',
2015-07-09 11:41:36 +08:00
name: '胡彦斌',
2015-07-09 14:51:48 +08:00
age: 32,
address: '西湖区湖底公园1号'
2015-07-09 11:41:36 +08:00
}, {
2015-08-28 15:22:09 +08:00
key: '2',
2015-07-09 11:41:36 +08:00
name: '胡彦祖',
2015-07-09 14:51:48 +08:00
age: 42,
address: '西湖区湖底公园1号'
2015-07-09 11:41:36 +08:00
}, {
2015-08-28 15:22:09 +08:00
key: '3',
2015-07-09 11:41:36 +08:00
name: '李大嘴',
2015-07-09 14:51:48 +08:00
age: 32,
address: '西湖区湖底公园1号'
2015-07-09 11:41:36 +08:00
}];
2015-10-20 16:47:55 +08:00
ReactDOM.render(<Table columns={columns} dataSource={data} />
2015-07-09 11:41:36 +08:00
, document.getElementById('components-table-demo-basic'));
````