• wangxl's avatar
    pppp · ca40178f
    wangxl authored
    ca40178f
auditInfo.vue 598 Bytes
<template>
  <e-comment :dataSource="value"></e-comment>
</template>
<script>

import EComment from '@/components/comment/index.vue'
export default {
  name: "audit",
  components: {
    EComment
  },
  data() {
    return {
      auditList: [{ auditContent: '', auditUnitName: '', auditDate: '', photo: 'https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png', },],
    };
  },
  props: {
    value: {
      type: Array,
      default: () => {
        return [...this.auditList]
      }
    }
  },
  created() {
    this.load();
  },
  methods: {
    load() {
    }
  },
};
</script>