HotScrollBar.vue
1.97 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
<template>
<van-notice-bar class="hot-scroll-bar" :scrollable="false">
<template #left-icon>
<img class="title-icon" src="@/assets/icon/icon_today_hot.png" alt="" />
<span class="line"></span>
</template>
<van-swipe
vertical
class="notice-swipe"
:autoplay="3000"
:show-indicators="false"
>
<van-swipe-item v-for="(item, idx) in data.scrollBarVOS" :key="idx">
<div class="content-main" @click="clickItem(item)">
<span class="tag" :style="tagStyle(item)">{{ item.scrollTag }}</span>
<span class="content">{{ item.scrollTitle }}</span>
</div>
</van-swipe-item>
</van-swipe>
</van-notice-bar>
</template>
<script>
export default {
name: 'HotScrollBar',
props: {
data: {
type: Object,
default: () => { return {} }
}
},
methods: {
tagStyle (item) {
const { backgroundColor = 'red' } = item || {}
return { backgroundColor: 'red' }
},
clickItem (item) {
const { id } = item
}
}
}
</script>
<style lang="less" scoped>
@import '~@/assets/css/mixins.less';
.hot-scroll-bar {
margin-top: 20px;
height: 45px;
display: flex;
align-items: center;
background: white;
border-radius: 8px;
border: 2px solid rgba(240, 241, 243, 1);
padding: 0 10px;
.title-icon {
width: 35px;
height: 35px;
}
.line {
width: 1px;
height: 20px;
background: #000000;
opacity: 0.1;
margin-left: 11px;
}
.notice-swipe {
height: 45px;
line-height: 45px;
padding-left: 8px;
}
.content-main {
width: 100%;
display: flex;
align-items: center;
.tag {
color: white;
border-radius: 4px;
padding: 0 3px;
display: flex;
align-items: center;
justify-content: center;
font-size: 19px;
height: 20px;
}
.content {
height: 100%;
color: #333333;
font-size: 16px;
margin-left: 5px;
.line-clamp(1);
}
}
}
</style>