sidebar.vue
1.78 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
<template>
<div class="sidebar">
<template v-for="item in list">
<template v-if="item.separativeSign === 'Y'">
<div class="sep">
<!-- 分割线 -->
</div>
</template>
<a class="item" href="{{item.sortUrl}}">
{{item.sortNameEn}}{{item.sortName}}
</a>
</template>
</div>
</template>
<script>
// const tab = require('channel/tab.vue');
// const resources = require('component/resources/index.vue');
module.exports = {
data() {
return {
list: []
};
},
components: {
},
created() {
$.ajax({
url: '/sidebar'
}).then((res) => {
this.list = res.data;
});
}
};
</script>
<style>
@import "../../scss/common/color";
.sidebar {
width: 100%;
background: $white;
overflow-x: hidden;
.item {
position: relative;
display: block;
padding: 0 30px;
width: 100%;
height: 126px;
line-height: 126px;
font-size: 30px;
font-weight: bold;
&:after {
content: "";
position: absolute;
left: 30px;
bottom: -1px;
width: 100%;
height: 0;
border-top: 1px solid #eee;
}
&:last-child:after {
content: none;
}
}
.sep {
width: 100%;
height: 22px;
background: #f6f6f6;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
}
</style>