106 lines
2.7 KiB
Vue
106 lines
2.7 KiB
Vue
<template>
|
|
<div class="sidebar-logo-container" :class="{'collapse':collapse}" :style="{ backgroundColor: sideTheme === 'theme-dark' ? variables.menuBackground : variables.menuLightBackground }">
|
|
<transition name="sidebarLogoFade">
|
|
<router-link v-if="collapse" key="collapse" class="sidebar-logo-link" to="/">
|
|
<img v-if="logo" :src="logo" class="sidebar-logo" />
|
|
<h1 v-else class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }} </h1>
|
|
</router-link>
|
|
<router-link v-else key="expand" class="sidebar-logo-link" to="/">
|
|
<img v-if="logo" :src="logo" class="sidebar-logo" />
|
|
<h1 class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }} </h1>
|
|
</router-link>
|
|
</transition>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import logoImg from '@/assets/logo/logo.png'
|
|
import variables from '@/assets/styles/variables.scss'
|
|
|
|
export default {
|
|
name: 'SidebarLogo',
|
|
props: {
|
|
collapse: {
|
|
type: Boolean,
|
|
required: true
|
|
}
|
|
},
|
|
computed: {
|
|
variables() {
|
|
return variables;
|
|
},
|
|
sideTheme() {
|
|
return this.$store.state.settings.sideTheme
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
title: '镀锌机组管理系统',
|
|
logo: logoImg
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.sidebarLogoFade-enter-active {
|
|
transition: opacity 1.5s;
|
|
}
|
|
|
|
.sidebarLogoFade-enter,
|
|
.sidebarLogoFade-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
.sidebar-logo-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
// 金属质感深色渐变背景,与侧边栏风格统一
|
|
background: #3f4449;
|
|
border-bottom: 1px solid #8d939b;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) inset;
|
|
|
|
& .sidebar-logo-link {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
|
|
& .sidebar-logo {
|
|
width: 32px;
|
|
height: 32px;
|
|
vertical-align: middle;
|
|
margin-right: 12px;
|
|
background-color: #f0f0f0;
|
|
// 为Logo添加金属边框效果
|
|
border-radius: 4px;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2),
|
|
0 0 0 1px rgba(255, 255, 255, 0.1) inset;
|
|
}
|
|
|
|
& .sidebar-title {
|
|
display: inline-block;
|
|
margin: 0;
|
|
// 金属质感文字色,带轻微高光
|
|
color: #f0f0f0;
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
font-weight: 600;
|
|
line-height: 50px;
|
|
font-size: 14px;
|
|
font-family: Avenir, Helvetica Neue, Arial, Helvetica, sans-serif;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
&.collapse {
|
|
.sidebar-logo {
|
|
margin-right: 0px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|