article-footer.vue
1.87 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
<template>
<div class="article-footer-wrapper">
<slot name="before"></slot>
<div class="tool-bar">
<WidgetIconBtn ref="favIcon" class="item" type="fav" :pos-id="sceneId" :text="praiseCount" :articleId="articleId" :option="optionPraise"></WidgetIconBtn>
<WidgetIconBtn class="item" type="star" :pos-id="sceneId" :text="favoriteCount" :articleId="articleId" :option="optionFav" ></WidgetIconBtn>
<WidgetIconBtn class="item" type="msg" :text="commentCount" :option="optionComment" @click="onComment"></WidgetIconBtn>
</div>
<slot name="after">
<div class="close ml20" @click="onClose">收起</div>
</slot>
</div>
</template>
<script>
import YAS from 'utils/yas-constants';
export default {
name: 'ArticleFooter',
props: ['favoriteCount', 'praiseCount', 'commentCount', 'hasFavor', 'hasPraise', 'articleId'],
data() {
return {
optionComment: {
emitName: 'click',
canSelect: false
},
sceneId: YAS.scene.newsDetail
};
},
computed: {
optionPraise() {
return {
selected: this.hasPraise === 'Y'
};
},
optionFav() {
return {
selected: this.hasFavor === 'Y'
}
}
},
methods: {
onComment() {
this.$emit('on-comment-click');
},
onClose() {
this.$emit('on-close');
},
onPraise() {
if (this.hasPraise !== 'Y') {
this.$refs.favIcon.onClick();
}
},
},
};
</script>
<style lang="scss" scoped>
.article-footer-wrapper {
display: flex;
height: 100px;
border-top: 1px solid #f0f0f0;
background-color: white;
}
.tool-bar {
flex: 1;
display: flex;
align-items: center;
justify-content: space-around;
}
.close {
width: 200px;
color: white;
font-size: 32px;
line-height: 100px;
font-weight: 300;
background-color: #d0021b;
text-align: center;
}
.ml20 {
margin-left: 20px;
}
</style>