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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
| <template>
| <a-layout-sider :class="[theme, 'sider', isMobile ? null : 'shadow']" width="256px" :collapsible="collapsible" v-model="collapsed" :trigger="null">
| <div :class="['logo', theme]">
| <router-link to="/dashboard/workplace">
| <img src="static/img/vue-antd-logo.png">
| <h1>{{systemName}}</h1>
| </router-link>
| </div>
| <i-menu :theme="theme" :collapsed="collapsed" :menuData="menuData" @select="onSelect"/>
| </a-layout-sider>
| </template>
|
| <script>
| import IMenu from './menu'
| export default {
| name: 'SiderMenu',
| components: {IMenu},
| props: {
| collapsible: {
| type: Boolean,
| required: false,
| default: false
| },
| collapsed: {
| type: Boolean,
| required: false,
| default: false
| },
| menuData: {
| type: Array,
| required: true
| },
| theme: {
| type: String,
| required: false,
| default: 'dark'
| }
| },
| computed: {
| isMobile () {
| return this.$store.state.setting.isMobile
| },
| systemName () {
| return this.$store.state.setting.systemName
| }
| },
| methods: {
| onSelect (obj) {
| this.$emit('menuSelect', obj)
| }
| }
| }
| </script>
|
| <style lang="less" scoped>
| .shadow{
| box-shadow: 2px 0 6px rgba(0,21,41,.35);
| }
| .sider{
| z-index: 10;
| &.light{
| background-color: #fff;
| }
| &.dark{
| background-color: #001529;
| }
| .logo{
| height: 64px;
| position: relative;
| line-height: 64px;
| padding-left: 24px;
| -webkit-transition: all .3s;
| transition: all .3s;
| overflow: hidden;
| &.light{
| background-color: #fff;
| h1{
| color: #1890ff;
| }
| }
| &.dark{
| background-color: #002140;
| h1{
| color: #fff;
| }
| }
| h1{
| color: #fff;
| font-size: 20px;
| margin: 0 0 0 12px;
| font-family: "Myriad Pro","Helvetica Neue",Arial,Helvetica,sans-serif;
| font-weight: 600;
| display: inline-block;
| height: 32px;
| line-height: 32px;
| vertical-align: middle;
| }
| img{
| width: 32px;
| display: inline-block;
| vertical-align: middle;
| }
| }
| }
| </style>
|
|