brand-top.vue
1.32 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
<template>
<div class="top-box clearfix">
<i class="back"></i>
<div class="right">
<i class="favorite"></i>
<a class="share" href="{{shareData}}"></a>
<i class="filter"></i>
</div>
</div>
</template>
<style>
.top-box {
width: 100%;
height: 60px;
position: fixed;
top: 60px;
left: 0;
z-index: 99;
.back {
width: 60px;
height: 60px;
float: left;
background: url("/channel/back.png") no-repeat;
}
.right {
height: 60px;
float: right;
i {
width: 60px;
height: 60px;
margin: 0 5px;
display: inline-block;
}
.favorite {
background: url("/channel/favorite.png") no-repeat;
}
.share {
width: 60px;
height: 60px;
margin: 0 5px;
display: inline-block;
background: url("/channel/share.png") no-repeat;
}
.filter {
background: url("/channel/filter.png") no-repeat;
}
}
}
</style>
<script>
module.exports = {
props: ['shareData']
};
</script>