Blame view

ant-design-vue-jeecg/src/components/tools/Logo.vue 1.38 KB
肖超群 authored
1
2
3
4
<template>
  <div class="logo">
    <router-link :to="routerLinkTo">
      <!-- update-begin- author:sunjianlei --- date:20190814 --- for: logo颜色根据主题颜色变化 -->
谭毅彬 authored
5
6
      <img v-if="navTheme === 'dark'" src="~@/assets/huaheng.png" alt="logo" />
      <img v-else src="~@/assets/huaheng.png" alt="logo" style="margin-bottom:3px" />
肖超群 authored
7
8
9
10
11
12
13
      <!-- update-begin- author:sunjianlei --- date:20190814 --- for: logo颜色根据主题颜色变化 -->
      <h1 v-if="showTitle">{{ title }}</h1>
    </router-link>
  </div>
</template>

<script>
谭毅彬 authored
14
import { mixin } from '@/utils/mixin.js'
肖超群 authored
15
肖超群 authored
16
17
18
19
20
21
export default {
  name: 'Logo',
  mixins: [mixin],
  props: {
    title: {
      type: String,
22
      default: 'WCS',
肖超群 authored
23
24
25
26
27
28
29
30
31
32
      required: false
    },
    showTitle: {
      type: Boolean,
      default: true,
      required: false
    },
    // 点击Logo跳转地址
    routerLinkTo: {
      type: Object,
谭毅彬 authored
33
34
      default: () => ({ name: 'dashboard-analysis' })
    }
肖超群 authored
35
  }
肖超群 authored
36
}
肖超群 authored
37
38
</script>
<style lang="less" scoped>
肖超群 authored
39
40
41
42
43
/*缩小首页布 局顶部的高度*/
@height: 59px;

.sider {
  box-shadow: none !important;
肖超群 authored
44
肖超群 authored
45
46
47
  .logo {
    height: @height !important;
    line-height: @height !important;
肖超群 authored
48
    box-shadow: none !important;
肖超群 authored
49
50
51
    transition: background 300ms;
    a {
      color: white;
肖超群 authored
52
肖超群 authored
53
54
      &:hover {
        color: rgba(255, 255, 255, 0.8);
肖超群 authored
55
56
      }
    }
肖超群 authored
57
  }
肖超群 authored
58
肖超群 authored
59
60
  &.light .logo {
    background-color: @primary-color;
肖超群 authored
61
  }
肖超群 authored
62
}
肖超群 authored
63
</style>