88 lines
2.4 KiB
Markdown
88 lines
2.4 KiB
Markdown
<cn>
|
|
#### 多种形态的 PageHeader
|
|
使用操作区,并自定义子节点,适合使用在需要展示一些复杂的信息,帮助用户快速了解这个页面的信息和操作。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Various forms of PageHeader
|
|
Use the operating area and customize the sub-nodes, suitable for use in the need to display some complex information to help users quickly understand the information and operations of this page.
|
|
</us>
|
|
|
|
```vue
|
|
<template>
|
|
<div>
|
|
<a-page-header
|
|
style="border: 1px solid rgb(235, 237, 240)"
|
|
title="Title"
|
|
sub-title="This is a subtitle"
|
|
@back="() => $router.go(-1)"
|
|
>
|
|
<template slot="extra">
|
|
<a-button key="3">
|
|
Operation
|
|
</a-button>
|
|
<a-button key="2">
|
|
Operation
|
|
</a-button>
|
|
<a-button key="1" type="primary">
|
|
Primary
|
|
</a-button>
|
|
</template>
|
|
<a-descriptions size="small" :column="3">
|
|
<a-descriptions-item label="Created">
|
|
Lili Qu
|
|
</a-descriptions-item>
|
|
<a-descriptions-item label="Association">
|
|
<a>421421</a>
|
|
</a-descriptions-item>
|
|
<a-descriptions-item label="Creation Time">
|
|
2017-01-10
|
|
</a-descriptions-item>
|
|
<a-descriptions-item label="Effective Time">
|
|
2017-10-10
|
|
</a-descriptions-item>
|
|
<a-descriptions-item label="Remarks">
|
|
Gonghu Road, Xihu District, Hangzhou, Zhejiang, China
|
|
</a-descriptions-item>
|
|
</a-descriptions>
|
|
</a-page-header>
|
|
<br />
|
|
<a-page-header title="Title" sub-title="This is a subtitle" @back="() => $router.go(-1)">
|
|
<template slot="tags">
|
|
<a-tag color="blue">
|
|
Running
|
|
</a-tag>
|
|
</template>
|
|
<template slot="extra">
|
|
<a-button key="3">
|
|
Operation
|
|
</a-button>
|
|
<a-button key="2">
|
|
Operation
|
|
</a-button>
|
|
<a-button key="1" type="primary">
|
|
Primary
|
|
</a-button>
|
|
</template>
|
|
<a-row type="flex">
|
|
<a-statistic title="Status" value="Pending" />
|
|
<a-statistic
|
|
title="Price"
|
|
prefix="$"
|
|
:value="568.08"
|
|
:style="{
|
|
margin: '0 32px',
|
|
}"
|
|
/>
|
|
<a-statistic title="Balance" prefix="$" :value="3345.08" />
|
|
</a-row>
|
|
</a-page-header>
|
|
</div>
|
|
</template>
|
|
<style>
|
|
tr:last-child td {
|
|
padding-bottom: 0;
|
|
}
|
|
</style>
|
|
```
|