mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 08:19:37 +08:00
338018eba3
* pure page header style * add type props * add prue demo * add config provider doc * fix lint * fix lint error * change pure to ghost * fix test * default ghost is true * fix review style * fix review warning * use online style * remove defualt and remove comment * add test
55 lines
1.4 KiB
Markdown
55 lines
1.4 KiB
Markdown
---
|
||
order: 2
|
||
title:
|
||
zh-CN: 白底模式
|
||
en-US: white background mode
|
||
---
|
||
|
||
## zh-CN
|
||
|
||
默认 PageHeader 是透明底色的。在某些情况下,PageHeader 需要自己的背景颜色。
|
||
|
||
## en-US
|
||
|
||
The default PageHeader is a transparent background. In some cases, PageHeader needs its own background color.
|
||
|
||
```jsx
|
||
import { PageHeader, Button, Descriptions } from 'antd';
|
||
|
||
ReactDOM.render(
|
||
<div
|
||
style={{
|
||
backgroundColor: '#F5F5F5',
|
||
padding: 24,
|
||
}}
|
||
>
|
||
<PageHeader
|
||
ghost={false}
|
||
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>,
|
||
]}
|
||
>
|
||
<Descriptions size="small" column={3}>
|
||
<Descriptions.Item label="Created">Lili Qu</Descriptions.Item>
|
||
<Descriptions.Item label="Association">
|
||
<a>421421</a>
|
||
</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">
|
||
Gonghu Road, Xihu District, Hangzhou, Zhejiang, China
|
||
</Descriptions.Item>
|
||
</Descriptions>
|
||
</PageHeader>
|
||
</div>,
|
||
mountNode,
|
||
);
|
||
```
|