Ptyp.vue 2.14 KB
Newer Older
chenwen committed
1
<template>
chenwen committed
2 3 4 5
  <div class="eibs-tab">  
  <c-row>     
  <!-- ====================左边======================= -->
   <c-col :span="12">   
chenwen committed
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
      <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>	
chenwen committed
36 37 38 39 40 41

    </c-col>  

  <!-- ====================右边======================= -->
   <c-col :span="12">   
       <c-col :span="24">
chenwen committed
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
        <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>
chenwen committed
71 72 73 74
    </c-col>             
                      

  </c-row>   
chenwen committed
75 76 77 78 79 80 81
  </div>
</template>
<script>
import Api from "~/service/Api"
import CommonProcess from "~/mixin/CommonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Bctset/Event"
chenwen committed
82
import Ptap from "~/views/Public/Ptap";
chenwen committed
83
export default {
chenwen committed
84
    components: { "c-ptap": Ptap },
chenwen committed
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
    inject: ['root'],
    props:["model","codes"],
    mixins: [CommonProcess],
    data(){
        return {

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

    }
}
</script>
<style>

</style>