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

<script>
export default {
  props: ["model"],
  data() {
    return {
      columns: [
        { label: '默认的机构标志', prop: 'usrdef', width: 'auto' },
        { label: '用户ID', prop: 'usr', width: 'auto' },
        { label: '用户所在机构和用户名称', prop: 'mannam', width: 'auto' },
        { label: '机构INR', prop: 'branchinr', width: 'auto' },
        { label: '用户可作业务的列表', prop: 'objlst', width: 'auto' },
        { label: '是否参与任务分配', prop: 'assignflg', width: 'auto' },
      ],
    };
  },
};
</script>

<style>
</style>