Files
jshERP/jshERP-web/src/components/tools/Logo.vue
2021-12-08 00:28:12 +08:00

57 lines
1.1 KiB
Java

<template>
<div class="logo">
<h1 v-if="showTitle">{{ title }}</h1>
</div>
</template>
<script>
import { mixin } from '@/utils/mixin.js'
export default {
name: 'Logo',
mixins: [mixin],
props: {
title: {
type: String,
default: window.SYS_TITLE,
required: false
},
showTitle: {
type: Boolean,
default: true,
required: false
}
}
}
</script>
<style lang="less" scoped>
/*缩小首页布 局顶部的高度*/
@height: 59px;
.sider {
box-shadow: none !important;
.logo {
color: #ffffff;
height: @height !important;
line-height: @height !important;
box-shadow: none !important;
transition: background 300ms;
background: #002140;
h1 {
font-size: 24px;
color: #ffffff;
}
a {
color: white;
&:hover {
color: rgba(255, 255, 255, 0.8);
}
}
}
&.light .logo {
background-color: @primary-color;
}
}
</style>