Lettrfp1.vue 2.07 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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
<template>
  <div class="eibs-tab">
    <c-row>
      <c-col :span="12" style="padding-right: 20px;">
          <!-- Old Issuing Bank -->
		  <c-col :span="24">
				  <c-col :span="24">
					  <el-form-item
							  label="Old Issuer Ref."
							  prop="oldledgrp.iss.pts.ref"
							  style="width: 100%"
					  >
						  <c-input
								  v-model="model.oldledgrp.iss.pts.ref"
								  maxlength="16"
								  placeholder=""
								  disabled
								  style="width: 98%"
						  >
						  </c-input>
					  </el-form-item>
				  </c-col>
				  <c-col :span="24">
					  <c-ptap
							  :model="model"
							  :argadr="{title: 'Old Issuing Bank', grp: 'oldledgrp',rol: 'iss',}"
							  :haveAdrLabel="true"
							  :isAdrblk="true"
							  :required-extkey="true"
							  :isShowCard="false"
							  bchinr="00000036"
							  disabled
							  disabled-extkey
							  disabled-ref
								:isLabel120="false"
							  ptytyp="B">
					  </c-ptap>
				  </c-col>
		  </c-col>

      </c-col>

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

        <!--  New Issuing Bank -->
		  <c-col :span="24">
				  <c-col :span="24">
					  <el-form-item
							  label="Issuer Ref."
							  prop="ledgrp.iss.pts.ref"
							  style="width: 100%"
					  >
						  <c-input
								  v-model="model.ledgrp.iss.pts.ref"
								  maxlength="16"
								  placeholder=""
						  >
						  </c-input>
					  </el-form-item>
				  </c-col>
				  <c-col :span="24">
					  <c-ptap
							  :model="model"
							  :argadr="{title: 'New Issuing Bank', grp: 'ledgrp',rol: 'iss',}"
							  :haveAdrLabel="true"
							  :isAdrblk="true"
							  :required-extkey="true"
							  :isShowCard="false"
							  bchinr="00000036"
							  disabled
								:isLabel120="false"
							  ptytyp="B">
					  </c-ptap>
				  </c-col>
		  </c-col>
       
      </c-col>

    </c-row>         


  </div>
</template>
<script>
import event from "../event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {};
  }
};
</script>
<style>
</style>