40 lines
1011 B
Vue
40 lines
1011 B
Vue
<template>
|
|
<div class="logo">
|
|
<!-- update-begin- author:sunjianlei --- date:20190814 --- for: logo颜色根据主题颜色变化 -->
|
|
<!-- <img v-if="navTheme === 'dark'" src="~@/assets/img/logo.png" alt="logo" style="height:45px;margin:-15px 20px 0 240px" />
|
|
<label class="logoLabel">IDC公报产品同步软件</label> -->
|
|
<!-- update-begin- author:sunjianlei --- date:20190814 --- for: logo颜色根据主题颜色变化 -->
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mixin } from '@/utils/mixin.js'
|
|
|
|
export default {
|
|
name: 'Logo',
|
|
mixins: [mixin],
|
|
}
|
|
</script>
|
|
<style lang="less" scoped>
|
|
/*缩小首页布 局顶部的高度*/
|
|
@height: 103px;
|
|
|
|
.sider {
|
|
box-shadow: none !important;
|
|
.logo {
|
|
box-shadow: none !important;
|
|
transition: background 300ms;
|
|
|
|
a {
|
|
color: white;
|
|
&:hover {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.light .logo {
|
|
background-color: @primary-color;
|
|
}
|
|
}
|
|
</style> |