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

        <div class="infTopBtn">
            <el-button-group>
                <c-button size="small" type="primary" icon="el-icon-arrow-left"></c-button>
                <c-button size="small" type="primary" icon="el-icon-arrow-right"></c-button>
            </el-button-group>
            <c-button size="small" type="primary">Print</c-button>
            <c-button size="small" type="primary">Use</c-button>
            <c-button size="small" type="primary">Loginfo</c-button>
        </div>

        <c-row class="infrow" style="margin-top: 50px;">
            <c-col :span="23" :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/Infusr/Event"

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

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

        }
    }
</script>
<style>

</style>