<template>
  <div class="eibs">
      <!-- =================================左边================================= -->
      <c-col :span="12" style="padding-right: 20px;">

        <!-- Applicant,申请人 -->
          <c-col :span="24">
              <el-form-item label="Application Ref." prop="bedgrp.apl.pts.ref">
                  <c-input  v-model="model.bedgrp.apl.pts.ref" maxlength="16"   show-world-limit ></c-input>
              </el-form-item>
          </c-col>

          <c-col :span="24">
              <c-ptap
                      :model="model"
                      :argadr="{title: 'Applicant', grp: 'ledgrp',rol: 'apl',}"
                      :haveAdrLabel="true"
                      :isAdrblk="true"
                      bchinr="00000036"
                      disabled
                      disabled-extkey
                      disabled-ref
                      :isLabel120="false"
                      ptytyp="C">
              </c-ptap>
          </c-col>

        <!-- Issuer,开证行 -->
          <c-col :span="24">
              <el-form-item label="Issuing Bank Ref." prop="bedgrp.iss.pts.ref">
                  <c-input  v-model="model.bedgrp.iss.pts.ref" maxlength="16"  show-world-limit ></c-input>
              </el-form-item>
          </c-col>
          <!-- Issuer,开证行 -->
          <c-col :span="24">
              <c-ptap
                      :model="model"
                      :argadr="{title: 'Issuing bank', grp: 'ledgrp',rol: 'iss',}"
                      :haveAdrLabel="true"
                      :isAdrblk="true"
                      bchinr="00000036"
                      disabled
                      disabled-extkey
                      disabled-ref
                      :isLabel120="false"
                      ptytyp="B"
              >
              </c-ptap>
          </c-col>

      </c-col>
      <!-- ========================右边======================= -->
      <c-col :span="12" style="padding-left: 20px;">

          <c-col :span="24">
              <el-form-item label="Presented by Ref." prop="bedgrp.prb.pts.ref">
                  <c-input  v-model="model.bedgrp.prb.pts.ref" maxlength="16" show-world-limit ></c-input>
              </el-form-item>
          </c-col>
          <!-- Presented by,提交人 -->
          <c-col :span="24">
              <c-ptap
                      :model="model"
                      :argadr="{title: 'Presented by', grp: 'bedgrp',rol: 'prb',}"
                      :haveAdrLabel="true"
                      :isAdrblk="true"
                      bchinr="00000036"
                      disabled
                      disabledRef
                      disabledExtkey
                      :charmod="0"
                      :isLabel120="false"
                      ptytyp="C">
              </c-ptap>
          </c-col>

      </c-col>
  </div>
</template>
<script>
import event from "../event";
// import Ptap from '~/views/Public/Ptap';

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