ActInfo.vue 581 Bytes
Newer Older
潘际乾 committed
1 2 3 4 5 6 7 8 9 10 11 12
<template>
  <div class="eibs-tab">
    <c-table :list="model.actList" :columnsConfig="columns"></c-table>
  </div>
</template>

<script>
export default {
  props: ['model'],
  data() {
    return {
      columns: [
zhouqian committed
13 14 15 16 17
        { label: "账号类型", prop: "typ", width: "auto" },
        { label: "账号币种", prop: "cur", width: "auto" },
        { label: "账号", prop: "extkey", width: "auto" },
        { label: "科目代码", prop: "trmtyp", width: "auto" },
        { label: "账号名称", prop: "nam", width: "auto" },
潘际乾 committed
18 19 20 21 22 23 24 25
      ],
    };
  }
};
</script>

<style>
</style>