Spbp.vue 795 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
<template>
  <div class="eibs-tab">
    <c-col :span="24" style="padding-right: 20px">
      <c-col :span="22">
        <c-ptap-commons
          :cols="65"
          :rows="800"
          :minRows="20"
          :maxRows="20"
          :model="model"
          :extCodes="['lidgrp', 'blk']"
          lastModel="spcben"
          :charmod="3"
          title="Special Payment Conditions for Beneficiary(49G)"></c-ptap-commons>
      </c-col>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
import event from "../event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {};
  },
  methods: {},
};
</script>
<style>
.marginLable {
  padding-left: 160px;
}
</style>