Blame view

ant-design-vue-jeecg/src/components/tools/Logo.vue 1.44 KB
1
2
<template>
  <div class="logo">
3
    <router-link :to="routerLinkTo">
4
5
6
7
8
9

      <!-- update-begin- author:sunjianlei --- date:20190814 --- for: logo颜色根据主题颜色变化 -->
      <img v-if="navTheme === 'dark'" src="~@/assets/logo-white.png" alt="logo">
      <img v-else src="~@/assets/logo.svg" alt="logo">
      <!-- update-begin- author:sunjianlei --- date:20190814 --- for: logo颜色根据主题颜色变化 -->
10
11
12
13
14
15
      <h1 v-if="showTitle">{{ title }}</h1>
    </router-link>
  </div>
</template>

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

  .sider {
    box-shadow: none !important;
    .logo {
47
48
      height: @height !important;
      line-height: @height !important;
49
50
51
52
53
54
55
56
57
58
59
60
      box-shadow: none !important;
      transition: background 300ms;

      a {
        color: white;
        &:hover {
          color: rgba(255, 255, 255, 0.8);
        }
      }
    }

    &.light .logo {
61
      background-color: @primary-color;
62
    }
63
64
  }
</style>