mirror of
https://github.com/iczer/vue-antd-admin.git
synced 2025-04-06 03:57:44 +08:00
103 lines
2.2 KiB
Vue
103 lines
2.2 KiB
Vue
<template>
|
|
<div class="page-header">
|
|
<div class="breadcrumb">
|
|
<a-breadcrumb>
|
|
<a-breadcrumb-item><a href="#/dashboard">首页</a></a-breadcrumb-item>
|
|
<a-breadcrumb-item :key="item.path" v-for="item in breadcrumb">{{item.name}}</a-breadcrumb-item>
|
|
</a-breadcrumb>
|
|
</div>
|
|
<div class="detail">
|
|
<div v-if="logo" class="logo"><a-avatar :src="logo" /></div>
|
|
<div class="main">
|
|
<div class="row">
|
|
<h1 v-if="title" class="title">{{title}}</h1>
|
|
<div class="action"><slot name="action"></slot></div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="content"><slot name="content"></slot></div>
|
|
<div class="extra"><slot name="extra"></slot></div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ABreadcrumb from 'vue-antd-ui/es/breadcrumb'
|
|
import AAvatar from 'vue-antd-ui/es/avatar/Avatar'
|
|
|
|
const ABreadcrumbItem = ABreadcrumb.Item
|
|
export default {
|
|
name: 'PageHeader',
|
|
components: {AAvatar, ABreadcrumbItem, ABreadcrumb},
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
required: false
|
|
},
|
|
breadcrumb: {
|
|
type: Array,
|
|
required: false
|
|
},
|
|
logo: {
|
|
type: String,
|
|
required: false
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.page-header{
|
|
background: #fff;
|
|
padding: 16px 32px 0;
|
|
border-bottom: 1px solid #e8e8e8;
|
|
.breadcrumb{
|
|
margin-bottom: 16px;
|
|
}
|
|
.detail{
|
|
display: flex;
|
|
.row {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
.logo {
|
|
flex: 0 1 72px;
|
|
margin-bottom: 8px;
|
|
& > span {
|
|
border-radius: 72px;
|
|
display: block;
|
|
width: 72px;
|
|
height: 72px;
|
|
}
|
|
}
|
|
.main{
|
|
width: 100%;
|
|
flex: 0 1 auto;
|
|
.title{
|
|
flex: auto;
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
color: rgba(0,0,0,.85);
|
|
}
|
|
.content{
|
|
margin-bottom: 16px;
|
|
flex: auto;
|
|
}
|
|
.extra{
|
|
flex: 0 1 auto;
|
|
margin-left: 88px;
|
|
min-width: 242px;
|
|
text-align: right;
|
|
}
|
|
.action{
|
|
margin-left: 56px;
|
|
min-width: 266px;
|
|
flex: 0 1 auto;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|