Ptyp.vue 2.14 KB
<template>
  <div class="eibs-tab">  
  <c-row>     
  <!-- ====================左边======================= -->
   <c-col :span="12">   
      <c-col :span="24">
        <c-ptap
          :model="model"
          :argadr="{
            title: 'Drawee',
            grp: 'bcdgrp',
            rol: 'dre',
          }"
          :disabled="true"
          :isAdrblk="false"
          @onSeainf="onSeainf"
          @onAplpDet="onDrepDet"
        >
        </c-ptap>
      </c-col>
      <c-col :span="24">
        <c-ptap
          :model="model"
          :argadr="{
            title: '2nd Collecting',
            grp: 'bcdgrp',
            rol: 'co2',
          }"
          :disabled="true"
          :isAdrblk="false"
          @onSeainf="onSeainf"
          @onAplpDet="onDrrpDet"
        >
        </c-ptap>
      </c-col>	

    </c-col>  

  <!-- ====================右边======================= -->
   <c-col :span="12">   
       <c-col :span="24">
        <c-ptap
          :model="model"
          :argadr="{
            title: 'Remitting Bank',
            grp: 'bcdgrp',
            rol: 'rmi',
          }"
          :disabled="true"
          :isAdrblk="false"
          @onSeainf="onSeainf"
          @onAplpDet="onDrrpDet"
        >
        </c-ptap>
      </c-col>
     <c-col :span="24">
        <c-ptap
          :model="model"
          :argadr="{
            title: 'Drawer',
            grp: 'bcdgrp',
            rol: 'drr',
          }"
          :disabled="true"
          :isAdrblk="false"
          @onSeainf="onSeainf"
          @onAplpDet="onDrrpDet"
        >
        </c-ptap>
      </c-col>
    </c-col>             
                      

  </c-row>   
  </div>
</template>
<script>
import Api from "~/service/Api"
import CommonProcess from "~/mixin/CommonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Bctset/Event"
import Ptap from "~/views/Public/Ptap";
export default {
    components: { "c-ptap": Ptap },
    inject: ['root'],
    props:["model","codes"],
    mixins: [CommonProcess],
    data(){
        return {

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

    }
}
</script>
<style>

</style>