comment.vue 955 Bytes
<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>