|
|
|
@ -3,11 +3,11 @@ |
|
|
|
<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">{{ title }} </h1> |
|
|
|
<h1 v-else class="sidebar-title">{{ $t('login.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">{{ title }} </h1> |
|
|
|
<h1 class="sidebar-title">{{ $t('login.title') }} </h1> |
|
|
|
</router-link> |
|
|
|
</transition> |
|
|
|
</div> |
|
|
|
@ -24,8 +24,7 @@ export default { |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
title: 'Vue Element Admin', |
|
|
|
logo: 'https://wpimg.wallstcn.com/69a1c46c-eb1c-4b46-8bd4-e9e686ef5251.png' |
|
|
|
logo: require('../../../../assets/image/logo1.png') |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
@ -46,7 +45,7 @@ export default { |
|
|
|
width: 100%; |
|
|
|
height: 50px; |
|
|
|
line-height: 50px; |
|
|
|
background: #2b2f3a; |
|
|
|
background: #3594d3; |
|
|
|
text-align: center; |
|
|
|
overflow: hidden; |
|
|
|
|
|
|
|
@ -55,17 +54,15 @@ export default { |
|
|
|
width: 100%; |
|
|
|
|
|
|
|
& .sidebar-logo { |
|
|
|
width: 32px; |
|
|
|
height: 32px; |
|
|
|
width: 50px; |
|
|
|
height: 50px; |
|
|
|
vertical-align: middle; |
|
|
|
margin-right: 12px; |
|
|
|
margin-left:-2px; |
|
|
|
} |
|
|
|
|
|
|
|
& .sidebar-title { |
|
|
|
display: inline-block; |
|
|
|
margin: 0; |
|
|
|
color: #fff; |
|
|
|
font-weight: 600; |
|
|
|
line-height: 50px; |
|
|
|
font-size: 14px; |
|
|
|
font-family: Avenir, Helvetica Neue, Arial, Helvetica, sans-serif; |
|
|
|
@ -75,7 +72,9 @@ export default { |
|
|
|
|
|
|
|
&.collapse { |
|
|
|
.sidebar-logo { |
|
|
|
margin-right: 0px; |
|
|
|
width: 40px; |
|
|
|
height: 40px; |
|
|
|
margin-left: -2px; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|