comment.vue
2.35 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
<template>
<Layout style="background: none;">
<!-- <LayoutHeader class="comment-header" :back="!popup" theme="white" slot='header'>
{{headerText}}
</LayoutHeader> -->
<CommentHeader>{{headerText}}</CommentHeader>
<CommentList ref="commentList"
:dest-id="destId"
:pos-id="posId"
:article-id="articleId"
:comment-id="commentId"
:column-type="1001"
@on-page-change="onPageChange"
@on-comment="onComment"
@on-page-ready="onPageReady"
@on-close="onClose"
:authorUid="authorUid"
:authorName="authorName">
</CommentList>
<!-- <div class="footer-comment">-->
<!-- <CommentPlaceholder-->
<!-- ref="commentInput"-->
<!-- :share="share"-->
<!-- class="comment-input hover-opacity"-->
<!-- :dest-id="articleInfo.articleId"-->
<!-- :add-type="0"-->
<!-- :article-id="articleInfo.articleId"-->
<!-- :pos-id="posId"-->
<!-- :column-type="1001"-->
<!-- :autoUpdate="false"-->
<!-- :user="articleInfo.authorName"-->
<!-- @on-comment="onCommentInput">-->
<!-- 添加评论...-->
<!-- </CommentPlaceholder>-->
<!-- </div>-->
</Layout>
</template>
<script>
import CommentList from './comment-list';
import CommentHeader from './comment-header';
export default {
name: 'Comment',
props: {
destId: Number,
popup: {
type: Boolean,
default: false
},
posId: Number,
articleId: Number,
commentId: Number,
commentCount: Number,
authorUid: Number,
authorName: String
},
data() {
return {
size: 0
};
},
computed: {
headerText() {
return this.commentCount ? `${this.commentCount}条评论` : '评论';
}
},
methods: {
onPageChange({ size }) {
this.size = size;
},
onPageReady(params) {
this.$emit('on-page-ready', params);
},
onClose() {
this.$emit('on-close');
},
init() {
this.size = 0;
this.$refs.commentList.init();
},
onComment(params) {
this.$emit('on-comment', params);
}
},
components: {
CommentList,
CommentHeader
}
};
</script>
<style scoped lang="scss">
</style>