brand-top.vue
1.8 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
<template>
<div class="top-box clearfix">
<i class="back" @click="goBack()"></i>
<div class="right">
<i class="favorite"></i>
<i class="share" @click="goShare()"></i>
<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 {
background: url("/channel/share.png") no-repeat;
}
.filter {
background: url("/channel/filter.png") no-repeat;
}
}
}
</style>
<script>
const yoho = require('yoho');
module.exports = {
props: {
shareData: {
type: Object
}
},
methods: {
goShare() {
// TODO 这边应该需要一个分享后的页面链接,需要与 APP 确定分享要传的参数
let link = this.shareData.title +
this.shareData.link +
this.shareData.img;
yoho.goShare({link: link}, function() {}, function() {});
},
goBack() {
yoho.goBack({}, function() {}, function() {});
}
}
};
</script>