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

55 lines
1.0 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
var Table = antd.Table;
var columns = [{
title: '姓名',
2015-07-15 10:47:47 +08:00
dataIndex: 'name',
render: function(text) {
return <a href="#">{text}</a>;
}
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>
<a href="#">删除</a>
<span className="ant-divider">|</span>
<a href="#">操作</a>
<span className="ant-divider">|</span>
<a href="#" className="ant-dropdown-link">
更多 <i className="anticon anticon-down"></i>
</a>
</span>;
}
2015-07-09 11:41:36 +08:00
}];
var data = [{
name: '胡彦斌',
2015-07-09 14:51:48 +08:00
age: 32,
address: '西湖区湖底公园1号'
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
}, {
name: '李大嘴',
2015-07-09 14:51:48 +08:00
age: 32,
address: '西湖区湖底公园1号'
2015-07-09 11:41:36 +08:00
}];
React.render(<Table columns={columns} dataSource={data} />
2015-07-09 11:41:36 +08:00
, document.getElementById('components-table-demo-basic'));
````