Files
laws-sinotruk-client/src/components/tools/Logo.vue
T

87 lines
1.9 KiB
Vue

<template>
<div class="logo" :class="!showTitle ? 'h1-logo' : ''">
<router-link :to="routerLinkTo">
<!-- update-begin- author:sunjianlei --- date:20190814 --- for: logo颜色根据主题颜色变化 -->
<!-- <img v-if="navTheme === 'dark'" src="~@/assets/logo.png" alt="logo">-->
<!-- <img v-else src="~@/assets/logo.png" alt="logo">-->
<!-- update-begin- author:sunjianlei --- date:20190814 --- for: logo颜色根据主题颜色变化 -->
<img v-if="showTitle" src='../../assets/image/logoExpand.png' alt="logo" />
<!--<img src="~@/assets/image/analysisLogo.png" alt="logo">-->
<img v-else src="../../assets/image/logoFold.png" />
</router-link>
</div>
</template>
<script>
import { mixin } from '@/utils/mixin.js'
export default {
name: 'Logo',
mixins: [mixin],
props: {
title: {
type: String,
default: 'SRMS',
required: false
},
showTitle: {
type: Boolean,
default: true,
required: false
},
// 点击Logo跳转地址
routerLinkTo: {
type: Object,
default: () => ({ name: 'dashboard' })
}
}
}
</script>
<style lang="less" scoped>
/*缩小首页布 局顶部的高度*/
@height: 59px;
.sider {
box-shadow: none !important;
.h1-logo {
padding: 0 12px !important;
}
.logo {
height: @height !important;
line-height: @height !important;
box-shadow: 1px 0px 0 0 #e8e8e8 !important;
transition: background 300ms;
background-color: transparent !important;
padding: 0 24px 0 0;
h1 {
color: @primary-color !important;
font-weight: 700;
}
a {
width: 100%;
display: inline-block;
color: white;
img {
width: 100%;
height: auto;
}
&:hover {
color: rgba(255, 255, 255, 0.8);
}
}
}
&.light .logo {
background-color: @primary-color;
}
}
</style>