2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 6
|
2019-05-07 14:57:32 +08:00
|
|
|
title:
|
2016-08-08 10:40:02 +08:00
|
|
|
zh-CN: Flex 排序
|
|
|
|
en-US: Flex Order
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-06-09 22:19:35 +08:00
|
|
|
|
2016-08-08 10:40:02 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-06-15 17:46:42 +08:00
|
|
|
通过 Flex 布局的 Order 来改变元素的排序。
|
2015-06-09 22:19:35 +08:00
|
|
|
|
2016-08-08 10:40:02 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
To change the element sort by Flex layout order.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Row, Col } from 'antd';
|
2015-10-27 23:52:17 +08:00
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<Row type="flex">
|
2019-05-07 14:57:32 +08:00
|
|
|
<Col span={6} order={4}>
|
|
|
|
1 col-order-4
|
|
|
|
</Col>
|
|
|
|
<Col span={6} order={3}>
|
|
|
|
2 col-order-3
|
|
|
|
</Col>
|
|
|
|
<Col span={6} order={2}>
|
|
|
|
3 col-order-2
|
|
|
|
</Col>
|
|
|
|
<Col span={6} order={1}>
|
|
|
|
4 col-order-1
|
|
|
|
</Col>
|
2015-10-27 23:52:17 +08:00
|
|
|
</Row>
|
|
|
|
</div>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2015-10-27 23:52:17 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|