comment.vue
955 Bytes
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
<template>
<Layout>
<LayoutHeader :back="!popup" theme="white" slot='header'>
{{headerText}}
<template v-slot:opts v-if="popup">
<i class="iconfont icon-close icon" @click="onClose"></i>
</template>
</LayoutHeader>
<CommentList ref="commentList" :dest-id="destId" :column-type="1001" @on-page-change="onPageChange"></CommentList>
</Layout>
</template>
<script>
import CommentList from './comment-list';
export default {
name: 'Comment',
props: {
destId: Number,
popup: {
type: Boolean,
default: false
}
},
data() {
return {
size: 0
};
},
computed: {
headerText() {
return this.size ? `${this.size}条评论` : '';
}
},
methods: {
onPageChange({size}) {
this.size = size;
},
onClose() {
this.$emit('on-close');
},
init() {
this.$refs.commentList.init();
}
},
components: {CommentList}
};
</script>