mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
123 lines
2.8 KiB
Vue
123 lines
2.8 KiB
Vue
<template>
|
|
<div class="page-header">
|
|
<div :class="['page-header-wide', layout]">
|
|
<div class="breadcrumb">
|
|
<a-breadcrumb>
|
|
<a-breadcrumb-item :key="item.path" v-for="(item, index) in breadcrumb">
|
|
<span v-if="index === 0"><a href="#/dashboard/workplace">{{item.name}}</a></span>
|
|
<span v-else>{{item.name}}</span>
|
|
</a-breadcrumb-item>
|
|
</a-breadcrumb>
|
|
</div>
|
|
<div class="detail">
|
|
<div v-if="avatar" class="avatar"><a-avatar :src="avatar" /></div>
|
|
<div class="main">
|
|
<div class="row">
|
|
<img v-if="logo" :src="logo" class="logo" />
|
|
<h1 v-if="title" class="title">{{title}}</h1>
|
|
<div class="action"><slot name="action"></slot></div>
|
|
</div>
|
|
<div class="row">
|
|
<div v-if="this.$slots.content" class="content"><slot name="content"></slot></div>
|
|
<div v-if="this.$slots.extra" class="extra"><slot name="extra"></slot></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'PageHeader',
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
required: false
|
|
},
|
|
breadcrumb: {
|
|
type: Array,
|
|
required: false
|
|
},
|
|
logo: {
|
|
type: String,
|
|
required: false
|
|
},
|
|
avatar: {
|
|
type: String,
|
|
required: false
|
|
}
|
|
},
|
|
computed: {
|
|
layout () {
|
|
return this.$store.state.setting.layout
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.page-header{
|
|
background: #fff;
|
|
padding: 16px 24px;
|
|
border-bottom: 1px solid #e8e8e8;
|
|
.page-header-wide{
|
|
&.head{
|
|
margin: auto;
|
|
max-width: 1400px;
|
|
}
|
|
&.side{
|
|
}
|
|
.breadcrumb{
|
|
margin-bottom: 20px;
|
|
}
|
|
.detail{
|
|
display: flex;
|
|
.row {
|
|
display: flex;
|
|
}
|
|
.avatar {
|
|
flex: 0 1 72px;
|
|
margin:0 24px 8px 0;
|
|
& > span {
|
|
border-radius: 72px;
|
|
display: block;
|
|
width: 72px;
|
|
height: 72px;
|
|
}
|
|
}
|
|
.main{
|
|
width: 100%;
|
|
.title{
|
|
flex: auto;
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
color: rgba(0,0,0,.85);
|
|
margin-bottom: 16px;
|
|
}
|
|
.logo{
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 4px;
|
|
margin-right: 16px;
|
|
}
|
|
.content{
|
|
flex: 1;
|
|
}
|
|
.extra{
|
|
display: flex;
|
|
margin-left: 88px;
|
|
min-width: 420px;
|
|
}
|
|
.action{
|
|
margin-left: 56px;
|
|
min-width: 266px;
|
|
flex: 0 1 auto;
|
|
text-align: right;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|