<template>
  <c-content class="eibs-tab" :height="200">

    <!-- <div class="infTopBtn">
            <c-button disabled size="small" type="primary">Add New</c-button>
            <c-button disabled size="small" type="primary">Modify</c-button>
            <c-button disabled size="small" type="primary">Delete</c-button>
            <c-button disabled size="small" type="primary">Print</c-button>
            <c-button size="small" type="primary">List</c-button>
            <c-button disabled size="small" type="primary">Loginfo</c-button>
            <c-button disabled size="small" type="primary">Block</c-button>
            <c-button disabled size="small" type="primary">Reset</c-button>
            <c-button size="small" type="primary">Exit</c-button>
        </div> -->

      <c-row class="infrow" style="margin-top: 50px;">
          <c-col :span="24" :offset="1">
              Different Release Profile for Business Sector
          </c-col>
      </c-row>

      <c-row class="infrow">
          <c-col :span="22" :offset="1">
              <c-table :border="true" :list="model.recgrp.ubrgrd.ubr" style="text-align:center">
                  <el-table-column prop="branchinr" label="Branch" width="auto"></el-table-column>
                  <el-table-column prop="bussec" label="Business Sector" width="auto"></el-table-column>
                  <el-table-column prop="trncod" label="Trans code" width="auto"></el-table-column>
                  <el-table-column prop="relgrp" label="Release" width="auto"></el-table-column>
                  <el-table-column prop="relcur" label="Rel. Cur" width="auto"></el-table-column>
                  <el-table-column prop="relamt" label="Release Amout" width="auto"></el-table-column>
                  <el-table-column prop="relamt2nd" label="Own Amount" width="auto"></el-table-column>
                  <el-table-column prop="autcur" label="One.Rel" width="auto"></el-table-column>
                  <el-table-column prop="autamt" label="One.Rel Amount" width="auto"></el-table-column>
              </c-table>
          </c-col>
      </c-row>

  </c-content>
</template>
<script>
  import Api from "~/service/Api"
  import commonProcess from "~/mixin/commonProcess";
  import CodeTable from "~/config/CodeTable"
  import Event from "~/model/Dbiusr/Event"

  export default {
      inject: ['root'],
      props: ["model", "codes"],
      mixins: [commonProcess],
      data() {
          return {

          }
      },
      methods: { ...Event },
      created: function () {

      }
  }
</script>
<style>

</style>