2019-08-25 15:38:51 +08:00
|
|
|
---
|
|
|
|
order: 4
|
|
|
|
iframe: 240
|
|
|
|
title:
|
|
|
|
zh-CN: 响应式
|
|
|
|
en-US: responsive
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
在不同大小的屏幕下,应该有不同的表现
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Under different screen sizes, there should be different performance
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { PageHeader, Tabs, Button, Statistic, Descriptions } from 'antd';
|
|
|
|
|
|
|
|
const { TabPane } = Tabs;
|
|
|
|
|
|
|
|
const renderContent = (column = 2) => (
|
|
|
|
<Descriptions size="small" column={column}>
|
2019-09-04 17:02:19 +08:00
|
|
|
<Descriptions.Item label="Created">Lili Qu</Descriptions.Item>
|
|
|
|
<Descriptions.Item label="Association">
|
2019-08-25 15:38:51 +08:00
|
|
|
<a>421421</a>
|
2019-09-04 17:02:19 +08:00
|
|
|
</Descriptions.Item>
|
|
|
|
<Descriptions.Item label="Creation Time">2017-01-10</Descriptions.Item>
|
|
|
|
<Descriptions.Item label="Effective Time">2017-10-10</Descriptions.Item>
|
|
|
|
<Descriptions.Item label="Remarks">
|
2019-08-25 15:38:51 +08:00
|
|
|
Gonghu Road, Xihu District, Hangzhou, Zhejiang, China
|
2019-09-04 17:02:19 +08:00
|
|
|
</Descriptions.Item>
|
2019-08-25 15:38:51 +08:00
|
|
|
</Descriptions>
|
|
|
|
);
|
|
|
|
|
|
|
|
const extraContent = (
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
display: 'flex',
|
|
|
|
width: 'max-content',
|
|
|
|
justifyContent: 'flex-end',
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Statistic
|
|
|
|
title="Status"
|
|
|
|
value="Pending"
|
|
|
|
style={{
|
|
|
|
marginRight: 32,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<Statistic title="Price" prefix="$" value={568.08} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
const Content = ({ children, extra }) => {
|
|
|
|
return (
|
|
|
|
<div className="content">
|
|
|
|
<div className="main">{children}</div>
|
|
|
|
<div className="extra">{extra}</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<PageHeader
|
|
|
|
onBack={() => window.history.back()}
|
|
|
|
title="Title"
|
|
|
|
subTitle="This is a subtitle"
|
|
|
|
extra={[
|
|
|
|
<Button key="3">Operation</Button>,
|
|
|
|
<Button key="2">Operation</Button>,
|
|
|
|
<Button key="1" type="primary">
|
|
|
|
Primary
|
|
|
|
</Button>,
|
|
|
|
]}
|
|
|
|
footer={
|
|
|
|
<Tabs defaultActiveKey="1">
|
|
|
|
<TabPane tab="Details" key="1" />
|
|
|
|
<TabPane tab="Rule" key="2" />
|
|
|
|
</Tabs>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Content extra={extraContent}>{renderContent()}</Content>
|
|
|
|
</PageHeader>
|
|
|
|
</div>,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
```
|
|
|
|
|
|
|
|
<style>
|
|
|
|
tr:last-child td {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
#components-page-header-demo-responsive .content {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
@media (max-width: 576px) {
|
|
|
|
#components-page-header-demo-responsive .content {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#components-page-header-demo-responsive .main {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#components-page-header-demo-responsive .extra {
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|