2017-08-09 15:45:08 +08:00
---
2017-09-06 15:53:25 +08:00
order: 3
2017-08-09 15:45:08 +08:00
title:
zh-CN: 竖排列表样式
2017-10-13 11:40:49 +08:00
en-US: Vertical
2017-08-09 15:45:08 +08:00
---
## zh-CN
2017-10-13 11:40:49 +08:00
通过设置 `itemLayout` 属性为 `vertical` 可实现竖排列表样式。
2017-08-09 15:45:08 +08:00
## en-US
2019-04-20 06:36:12 +08:00
Set the `itemLayout` property to `vertical` to create a vertical list.
2017-08-09 15:45:08 +08:00
2019-05-07 14:57:32 +08:00
```jsx
2019-08-13 14:07:17 +08:00
import { List, Avatar } from 'antd';
2019-11-28 12:34:33 +08:00
import { MessageOutlined, LikeOutlined, StarOutlined } from '@ant-design/icons';
2017-08-09 15:45:08 +08:00
const listData = [];
2018-04-20 15:41:40 +08:00
for (let i = 0; i < 23 ; i + + ) {
2017-08-09 15:45:08 +08:00
listData.push({
href: 'http://ant.design',
title: `ant design part ${i}` ,
avatar: 'https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png',
2019-05-07 14:57:32 +08:00
description:
'Ant Design, a design language for background applications, is refined by Ant UED Team.',
content:
'We supply a series of design principles, practical patterns and high quality design resources (Sketch and Axure), to help people create their product prototypes beautifully and efficiently.',
2017-08-09 15:45:08 +08:00
});
}
2019-08-13 14:07:17 +08:00
const IconText = ({ icon, text }) => (
2017-08-09 21:46:48 +08:00
< span >
2019-08-13 14:07:17 +08:00
{React.createElement(icon, { style: { marginRight: 8 } })}
2017-08-09 21:46:48 +08:00
{text}
< / span >
);
2017-08-09 15:45:08 +08:00
ReactDOM.render(
2017-09-25 15:24:16 +08:00
< List
itemLayout="vertical"
2017-10-18 17:16:14 +08:00
size="large"
2018-04-20 15:41:40 +08:00
pagination={{
2019-05-07 14:57:32 +08:00
onChange: page => {
2018-04-20 15:41:40 +08:00
console.log(page);
},
pageSize: 3,
}}
2017-09-25 15:24:16 +08:00
dataSource={listData}
2019-05-07 14:57:32 +08:00
footer={
< div >
< b > ant design< / b > footer part
< / div >
}
2017-09-25 15:24:16 +08:00
renderItem={item => (
< List.Item
key={item.title}
2019-05-07 14:57:32 +08:00
actions={[
2019-11-28 12:34:33 +08:00
< IconText icon = {StarOutlined} text = "156" key = "list-vertical-star-o" / > ,
< IconText icon = {LikeOutlined} text = "156" key = "list-vertical-like-o" / > ,
< IconText icon = {MessageOutlined} text = "2" key = "list-vertical-message" / > ,
2019-05-07 14:57:32 +08:00
]}
extra={
< img
width={272}
alt="logo"
src="https://gw.alipayobjects.com/zos/rmsportal/mqaQswcyDLcXyDKnZfES.png"
/>
}
2017-09-25 15:24:16 +08:00
>
< List.Item.Meta
avatar={< Avatar src = {item.avatar} / > }
title={< a href = {item.href} > {item.title}< / a > }
description={item.description}
/>
{item.content}
< / List.Item >
)}
2018-06-27 15:55:04 +08:00
/>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```