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

57 lines
1013 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 10
2016-08-15 07:54:01 +08:00
title:
en-US: size
zh-CN: 紧凑型
2016-03-31 09:40:55 +08:00
---
2015-07-12 18:14:17 +08:00
2016-08-15 08:07:03 +08:00
## zh-CN
2016-08-15 07:54:01 +08:00
2016-08-15 08:07:03 +08:00
两种紧凑型的列表,小型列表只用于对话框内。
2016-08-15 07:54:01 +08:00
2016-08-15 08:07:03 +08:00
## en-US
2016-08-15 07:54:01 +08:00
2016-08-15 08:07:03 +08:00
Two compacted table size: `middle` and `small`, `small` size is used in Modal only.
2015-07-12 18:14:17 +08:00
2017-01-19 15:19:03 +08:00
````__react
import { Table } from 'antd';
const columns = [{
title: 'Name',
2016-05-03 14:15:29 +08:00
dataIndex: 'name',
2015-07-12 18:14:17 +08:00
}, {
title: 'Age',
2016-05-03 14:15:29 +08:00
dataIndex: 'age',
2015-07-12 18:14:17 +08:00
}, {
title: 'Address',
2016-05-03 14:15:29 +08:00
dataIndex: 'address',
2015-07-12 18:14:17 +08:00
}];
const data = [{
2015-08-28 15:22:09 +08:00
key: '1',
name: 'John Brown',
2015-07-12 18:14:17 +08:00
age: 32,
address: 'New York No. 1 Lake Park',
2015-07-12 18:14:17 +08:00
}, {
2015-08-28 15:22:09 +08:00
key: '2',
name: 'Jim Green',
2015-07-12 18:14:17 +08:00
age: 42,
address: 'London No. 1 Lake Park',
2015-07-12 18:14:17 +08:00
}, {
2015-08-28 15:22:09 +08:00
key: '3',
name: 'Joe Black',
2015-07-12 18:14:17 +08:00
age: 32,
address: 'Sidney No. 1 Lake Park',
2015-07-12 18:14:17 +08:00
}];
2016-11-15 12:01:06 +08:00
ReactDOM.render(
<div>
<h4>Middle size table</h4>
2016-11-15 12:01:06 +08:00
<Table columns={columns} dataSource={data} size="middle" />
<h4>Small size table</h4>
<Table columns={columns} dataSource={data} size="small" />
</div>
, mountNode);
2015-07-12 18:14:17 +08:00
````
2015-12-26 00:58:05 +08:00
<style>#components-table-demo-size h4 { margin-bottom: 16px; }</style>