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
| <template>
| <a-tooltip placement="right">
| <template slot="title">
| <span>回到首页</span>
| </template>
| <div class="logo">
| <img src="~@/assets/icons/logo.png" alt="logo" @click="$router.push('/dashboard/Analysis')" v-if="$route.meta.title==='首页'">
| <img src="~@/assets/icons/logo-dark.png" alt="logo" @click="$router.push('/dashboard/Analysis')" v-else>
| </div>
| </a-tooltip>
| </template>
|
| <script>
| import { mixin } from '@/utils/mixin.js'
|
| export default {
| name: 'Logo',
| mixins: [mixin],
| props: {
| title: {
| type: String,
| default: '机床维修AI',
| required: false
| },
| showTitle: {
| type: Boolean,
| default: true,
| required: false
| },
| // 点击Logo跳转地址
| routerLinkTo: {
| type: Object,
| default: () => ({ name: 'dashboard' })
| }
| }
| }
| </script>
| <style lang="less" scoped>
| /*缩小首页布 局顶部的高度*/
| @height: 50px;
|
| .sider {
| box-shadow: none !important;
| .logo {
| height: @height !important;
| line-height: @height !important;
| box-shadow: none !important;
| cursor: pointer;
| background-color: transparent;
| text-align: center;
|
| img {
| height: @height !important;
| }
| }
| }
| </style>
|
|