|
1
2
3
|
<template>
<a-layout-sider
:class="['sider', isDesktop() ? null : 'shadow', theme, fixSiderbar ? 'ant-fixed-sidemenu' : null ]"
|
|
4
|
width="208px"
|
|
5
|
:collapsible="collapsible"
|
|
6
|
v-model="collapsed"
|
|
7
8
9
10
11
12
13
14
|
:trigger="null">
<logo />
<s-menu
:collapsed="collapsed"
:menu="menus"
:theme="theme"
@select="onSelect"
:mode="mode"
|
|
15
16
|
:style="smenuStyle">
</s-menu>
|
|
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
|
</a-layout-sider>
</template>
<script>
import ALayoutSider from "ant-design-vue/es/layout/Sider"
import Logo from '../tools/Logo'
import SMenu from './index'
import { mixin, mixinDevice } from '@/utils/mixin.js'
export default {
name: "SideMenu",
components: { ALayoutSider, Logo, SMenu },
mixins: [mixin, mixinDevice],
props: {
mode: {
type: String,
required: false,
default: 'inline'
},
theme: {
type: String,
required: false,
default: 'dark'
},
collapsible: {
type: Boolean,
required: false,
default: false
},
collapsed: {
type: Boolean,
required: false,
default: false
},
menus: {
type: Array,
required: true
}
},
|
|
57
58
59
60
61
62
63
64
65
66
67
|
computed:{
smenuStyle() {
let style = { 'padding': '0' }
if (this.fixSiderbar) {
style['height'] = 'calc(100% - 59px)'
style['overflow'] = 'auto'
style['overflow-x'] = 'hidden'
}
return style
}
},
|
|
68
69
70
71
72
73
|
methods: {
onSelect (obj) {
this.$emit('menuSelect', obj)
}
}
}
|
|
74
|
</script>
|
|
75
|
<style lang="less" scoped>
|
|
76
77
78
|
/* update_begin author:sunjianlei date:20190509 for: 修改侧边导航栏滚动条的样式 */
.sider {
|
|
79
|
@scrollBarSize: 10px;
|
|
80
81
82
83
84
|
ul.ant-menu {
/* 定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
&::-webkit-scrollbar {
|
|
85
86
|
width: @scrollBarSize;
height: @scrollBarSize;
|
|
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
background-color: transparent;
display: none;
}
& .-o-scrollbar {
display: none;
}
/* 兼容IE */
-ms-overflow-style: none;
-ms-scroll-chaining: chained;
-ms-content-zooming: zoom;
-ms-scroll-rails: none;
-ms-content-zoom-limit-min: 100%;
-ms-content-zoom-limit-max: 500%;
-ms-scroll-snap-type: proximity;
-ms-scroll-snap-points-x: snapList(100%, 200%, 300%, 400%, 500%);
/* 定义滚动条轨道 */
&::-webkit-scrollbar-track {
background-color: transparent;
}
/* 定义滑块 */
&::-webkit-scrollbar-thumb {
|
|
112
|
border-radius: @scrollBarSize;
|
|
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
background-color: #eee;
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
&:hover {
background-color: #dddddd;
}
&:active {
background-color: #bbbbbb;
}
}
}
/** 暗色系滚动条样式 */
&.dark ul.ant-menu {
&::-webkit-scrollbar-thumb {
background-color: #666666;
&:hover {
background-color: #808080;
}
&:active {
background-color: #999999;
}
}
}
|
|
140
|
|
|
141
142
143
|
}
/* update_end author:sunjianlei date:20190509 for: 修改侧边导航栏滚动条的样式 */
|
|
144
145
146
|
</style>
<!-- update_begin author:sunjianlei date:20190530 for: 选中首页的时候不显示背景颜色 -->
|
|
147
|
<style lang="less">
|
|
148
149
|
.ant-menu.ant-menu-root {
& > .ant-menu-item:first-child {
|
|
150
|
background-color: transparent;
|
|
151
152
153
|
& > a, & > a:hover {
color: rgba(0, 0, 0, 0.65);
|
|
154
155
156
157
|
}
&.ant-menu-item-selected {
& > a, & > a:hover {
|
|
158
|
color: @primary-color;
|
|
159
160
161
|
}
}
}
|
|
162
|
|
|
163
164
165
166
167
168
169
170
171
|
&.ant-menu-dark > .ant-menu-item:first-child {
& > a, & > a:hover {
color: rgba(255, 255, 255, 0.65);
}
&.ant-menu-item-selected {
& > a, & > a:hover {
color: rgba(255, 255, 255, 1);
}
|
|
172
173
174
175
|
}
}
}
</style>
|
|
176
|
<!-- update_end author:sunjianlei date:20190530 for: 选中首页的时候不显示背景颜色 -->
|