127 lines
2.7 KiB
Vue
127 lines
2.7 KiB
Vue
<template>
|
|
<div class="sidebar-logo-container" :class="{'collapse':collapse}">
|
|
<transition name="sidebarLogoFade">
|
|
<router-link v-if="collapse" key="collapse" class="sidebar-logo-link" to="/">
|
|
<div class="logo-icon">
|
|
<i class="el-icon-shopping-cart-2"></i>
|
|
</div>
|
|
</router-link>
|
|
<router-link v-else key="expand" class="sidebar-logo-link" to="/">
|
|
<div class="logo-icon">
|
|
<i class="el-icon-shopping-cart-2"></i>
|
|
</div>
|
|
<h1 class="sidebar-title">{{ 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: process.env.VUE_APP_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: 60px;
|
|
line-height: 60px;
|
|
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
|
|
text-align: center;
|
|
overflow: hidden;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
backdrop-filter: blur(10px);
|
|
|
|
& .sidebar-logo-link {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0 20px;
|
|
|
|
& .logo-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 42px;
|
|
height: 42px;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
border: 2px solid rgba(255, 255, 255, 0.3);
|
|
border-radius: 50%;
|
|
margin-right: 15px;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
i {
|
|
font-size: 22px;
|
|
color: #ffffff;
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
&:hover {
|
|
background: rgba(255, 255, 255, 0.25);
|
|
border-color: rgba(255, 255, 255, 0.5);
|
|
transform: scale(1.05);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
}
|
|
}
|
|
|
|
& .sidebar-title {
|
|
display: inline-block;
|
|
margin: 0;
|
|
color: #fff;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
font-family: Avenir, Helvetica Neue, Arial, Helvetica, sans-serif;
|
|
vertical-align: middle;
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
}
|
|
}
|
|
|
|
&.collapse {
|
|
.logo-icon {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.sidebar-title {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
</style>
|