Ptyp.vue 2.48 KB
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 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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
<template>
  <div class="eibs-tab">
    <c-col :span="12" style="padding-right:20px;">
      <c-col :span="24" class="fieldName">
        <el-form-item label-width="0" style="margin-bottom: 10px;">
          <c-ptap :argadr="{ title: 'Drawee', grp: 'bcdgrp', rol: 'dre' }" 
                  :disabled="true" 
                  :disabledRef="true"
                  :disabledExtkey="true" 
                  :haveAdrLabel="false" 
                  :isAdrblk="true" 
                  :requiredExtkey="true" 
                  :model="model" 
                  :charmod="0"
                  ptytyp="C" :isLabel120="false"></c-ptap>
        </el-form-item>
      </c-col>

      <c-col :span="24" class="fieldName">
        <el-form-item label-width="0" style="margin-bottom: 10px;">
          <c-ptap :argadr="{ title: 'Drawer', grp: 'bcdgrp', rol: 'drr' }" 
                  :haveAdrLabel="false" 
                  :isAdrblk="true" 
                  :requiredNam="true"
                  :model="model" 
                  :charmod="0"
                  ptytyp="C,F" :isLabel120="false"></c-ptap>
        </el-form-item>
      </c-col>
    </c-col>

    <!-- =====================right================================ -->
    <c-col :span="12" style="padding-left:20px;">
      <c-col :span="24" class="fieldName">
        <el-form-item label-width="0" style="margin-bottom: 10px;">
          <c-ptap :argadr="{ title: 'Remitting Bank', grp: 'bcdgrp', rol: 'rmi' }" 
                  :haveAdrLabel="false" 
                  :isAdrblk="true" 
                  :requiredExtkey="true" 
                  :model="model" 
                  :charmod="0"
                  ptytyp="B" :isLabel120="false"></c-ptap>
        </el-form-item>
      </c-col>

      <c-col :span="24" class="fieldName">
        <el-form-item label-width="0" style="margin-bottom: 10px;">
          <c-ptap :argadr="{ title: '2nd Collecting Bank', grp: 'bcdgrp', rol: 'co2' }" 
                  :haveAdrLabel="false" 
                  :isAdrblk="true" 
                  :model="model" 
                  :charmod="0"
                  ptytyp="B" :isLabel120="false"></c-ptap>
        </el-form-item>
      </c-col>
    </c-col>
  </div>
</template>
<script>
import event from "../event";
// import Ptap from "~/views/Public/Ptap";

export default {
  components: {
    // "c-ptap": Ptap
  },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {};
  },
  methods: {},
  created: function() {}
};
</script>
<style>
</style>