vben
2020-11-26 73c8e0c1583afa83353ff36d1d9ec847776d3016
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<template>
  <div
    class="app-logo anticon"
    :class="{ theme, 'collapsed-show-title': getCollapsedShowTitle }"
    @click="handleGoHome"
  >
    <img src="/@/assets/images/logo.png" />
    <div class="app-logo__title ml-2 ellipsis" v-show="showTitle">{{ globSetting.title }}</div>
  </div>
</template>
<script lang="ts">
  import { defineComponent } from 'vue';
 
  import { useGlobSetting } from '/@/hooks/setting';
  import { useGo } from '/@/hooks/web/usePage';
  import { useMenuSetting } from '/@/hooks/setting/useMenuSetting';
 
  import { PageEnum } from '/@/enums/pageEnum';
 
  import { propTypes } from '/@/utils/propTypes';
 
  export default defineComponent({
    name: 'AppLogo',
    props: {
      /**
       * The theme of the current parent component
       */
      theme: propTypes.oneOf(['light', 'dark']),
      // Whether to show title
      showTitle: propTypes.bool.def(true),
    },
    setup() {
      const { getCollapsedShowTitle } = useMenuSetting();
 
      const globSetting = useGlobSetting();
 
      const go = useGo();
 
      function handleGoHome(): void {
        go(PageEnum.BASE_HOME);
      }
 
      return {
        handleGoHome,
        globSetting,
        getCollapsedShowTitle,
      };
    },
  });
</script>
<style lang="less" scoped>
  @import (reference) '../../../design/index.less';
 
  .app-logo {
    display: flex;
    align-items: center;
    padding-left: 10px;
    cursor: pointer;
 
    &.collapsed-show-title {
      padding-left: 20px;
    }
 
    &.light {
      border-bottom: 1px solid @border-color-base;
    }
 
    &.light &__title {
      color: @primary-color;
    }
 
    &.dark &__title {
      color: @white;
    }
 
    &__title {
      font-size: 18px;
      font-weight: 700;
      opacity: 0;
      transition: all 0.5s;
 
      .respond-to(medium,{
       opacity: 1;
      });
    }
  }
</style>