Ubrp.vue 2.52 KB
Newer Older
1 2 3
<template>
  <c-content class="eibs-tab" :height="200">

4
    <!-- <div class="infTopBtn">
5 6 7 8 9 10 11 12 13
            <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>
14
        </div> -->
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63

      <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>