sidebar.vue
3 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<template>
<div class="sidebar">
<template v-for="item in list">
<template v-if="item.separativeSign === 'Y'">
<div class="sep">
<!-- 分割线 -->
</div>
</template>
<a class="item ellipsis" href="{{item.sortUrl}}">
<span class="en">{{(item.sortNameEn || '').trim()}}</span>
<span class="cn">{{item.sortName}}</span>
</a>
</template>
</div>
</template>
<script>
const $ = require('jquery');
module.exports = {
data() {
return {
list: []
};
},
created() {
$.ajax({
url: '/sidebar'
}).then((res) => {
this.list = res.data;
});
}
// ,
// ready() {
// var a =document.querySelector('.sidebar')
// alert(a.getBoundingClientRect().width)
// }
};
</script>
<style>
@import "../../scss/common/color";
html {
font-size: 60px !important;
overflow-x: hidden;
}
#sidebar {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow-x: hidden;
overflow-y: auto;
background: #f6f6f6;
}
.sidebar {
background: $white;
.item {
position: relative;
display: block;
padding: 0 30px;
height: 124px;
line-height: 124px;
font-size: 30px;
font-weight: bold;
font-family: "BrownStd-Bold", "PingFang SC", Helvetica, Roboto, "Heiti SC", "黑体", Arial;
.en {
font-size: 36px;
}
.cn {
margin-left: -6px;
}
&:first-child {
font-size: 36px;
height: 142px;
line-height: 142px;
font-family: "PingFang SC", Helvetica, Roboto, "Heiti SC", "黑体", Arial;
}
&:after {
content: "";
position: absolute;
left: 30px;
bottom: 0;
width: 100%;
height: 0;
border-bottom: 1px solid #eee;
}
&:last-child {
border-bottom: 1px solid #eee;
&:after {
content: none;
}
}
}
.sep {
margin-top: -1px;
width: 100%;
height: 20px;
background: #f6f6f6;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
& + .item {
font-size: 36px;
height: 142px;
line-height: 142px;
font-family: "PingFang SC", Helvetica, Roboto, "Heiti SC", "黑体", Arial;
}
}
}
.app.ios {
.sidebar {
margin-top: 40px;
}
}
</style>