<template>
  <div class="eibs-tab">
    <c-table :list="model.ptcList" :columnsConfig="columns"></c-table>
  </div>
</template>

<script>
export default {
  props: ["model"],
  data() {
    return {
      columns: [
        { label: "性别", prop: "gen", width: "auto" },
        { label: "联系人名称", prop: "nam", width: "auto" },
        { label: "部门", prop: "dep", width: "auto" },
        { label: "办公电话", prop: "teloff", width: "auto" },
        { label: "电子邮箱地址", prop: "eml", width: "auto" },
        { label: "电传", prop: "telfax", width: "auto" },
      ],
    };
  },
};
</script>

<style>
</style>