108 lines
2.6 KiB
Markdown
108 lines
2.6 KiB
Markdown
<cn>
|
|
#### 响应式
|
|
在不同大小的屏幕下,应该有不同的表现
|
|
</cn>
|
|
|
|
<us>
|
|
#### responsive
|
|
Under different screen sizes, there should be different performance
|
|
</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>
|
|
<template slot="footer">
|
|
<a-tabs default-active-key="1">
|
|
<a-tab-pane key="1" tab="Details" />
|
|
<a-tab-pane key="2" tab="Rule" />
|
|
</a-tabs>
|
|
</template>
|
|
<div class="content">
|
|
<div class="main">
|
|
<a-descriptions size="small" :column="2">
|
|
<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>
|
|
</div>
|
|
<div class="extra">
|
|
<div
|
|
:style="{
|
|
display: 'flex',
|
|
width: 'max-content',
|
|
justifyContent: 'flex-end',
|
|
}"
|
|
>
|
|
<a-statistic
|
|
title="Status"
|
|
value="Pending"
|
|
:style="{
|
|
marginRight: '32px',
|
|
}"
|
|
/>
|
|
<a-statistic title="Price" prefix="$" :value="568.08" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a-page-header>
|
|
</div>
|
|
</template>
|
|
<style>
|
|
tr:last-child td {
|
|
padding-bottom: 0;
|
|
}
|
|
#components-page-header-demo-responsive .content {
|
|
display: flex;
|
|
}
|
|
#components-page-header-demo-responsive .ant-statistic-content {
|
|
font-size: 20px;
|
|
line-height: 28px;
|
|
}
|
|
@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>
|
|
```
|