103 lines
2.9 KiB
Vue
103 lines
2.9 KiB
Vue
<!--
|
|
* @Author: error: error: git config user.name & please set dead value or install git && error: git config user.email & please set dead value or install git & please set dead value or install git
|
|
* @Date: 2024-08-02 16:36:49
|
|
* @LastEditors: error: error: git config user.name & please set dead value or install git && error: git config user.email & please set dead value or install git & please set dead value or install git
|
|
* @LastEditTime: 2026-07-31 15:30:18
|
|
* @FilePath: \yudao-dev\src\layout\components\Sidebar\Logo.vue
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
-->
|
|
<template>
|
|
<div class="sidebar-logo-container" :class="{'collapse':collapse}" :style="{ backgroundColor: sideTheme === 'theme-dark' ? variables.menuBackground : variables.menuLightBackground }">
|
|
<transition name="sidebarLogoFade">
|
|
<div v-if="collapse" key="collapse" class="sidebar-logo-link">
|
|
<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>
|
|
</div>
|
|
<div v-else key="expand" class="sidebar-logo-link">
|
|
<img v-if="logo" :src="logo" class="sidebar-logo" />
|
|
<h1 class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }} </h1>
|
|
</div>
|
|
</transition>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import logoImg from '@/assets/img/cnbm.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: '智能MES系统驾驶舱',
|
|
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: #2b2f3a;
|
|
text-align: left;
|
|
margin-left: 16px;
|
|
overflow: hidden;
|
|
|
|
& .sidebar-logo-link {
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
& .sidebar-logo {
|
|
width: 32px;
|
|
height: 32px;
|
|
vertical-align: middle;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
& .sidebar-title {
|
|
display: inline-block;
|
|
margin: 0;
|
|
color: #fff;
|
|
font-weight: 600;
|
|
line-height: 50px;
|
|
font-size: 16px;
|
|
font-family: Avenir, Helvetica Neue, Arial, Helvetica, sans-serif;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
&.collapse {
|
|
.sidebar-logo {
|
|
margin-right: 0px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|