<template> <div class="eibs-tab"> <c-col :span="12" style="padding-right:20px;"> <c-col :span="24" class="fieldName"> <el-form-item label="Drawee" style="margin-bottom: 0;"> <el-form-item label-width="0" style="margin-bottom: 10px;"> <c-ptap :argadr="{ title: '付款人', grp: 'bcdgrp', rol: 'dre' }" :disabled="true" :disabledExtkey="true" :disabledRef="true" :haveAdrLabel="false" :isAdrblk="true" :isFieldLabelVisible="false" :requiredExtkey="true" :model="model" :charmod="0" ptytyp="B" :isLabel120="false"></c-ptap> </el-form-item> </el-form-item> </c-col> <c-col :span="24" class="fieldName"> <el-form-item label="Drawer" style="margin-bottom: 0;"> <el-form-item label-width="0" style="margin-bottom: 10px;"> <c-ptap :argadr="{ title: '收款人', grp: 'bcdgrp', rol: 'drr' }" :disabled="true" :disabledExtkey="true" :disabledRef="true" :isAdrblk="true" :haveAdrLabel="false" :requiredAdrblk="true" :isFieldLabelVisible="false" :requiredNam="true" :model="model" :charmod="0" ptytyp="C,F" :isLabel120="false"></c-ptap> </el-form-item> </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="Remitting Bank" style="margin-bottom: 0;"> <el-form-item label-width="0" style="margin-bottom: 10px;"> <c-ptap :argadr="{ title: '托收行', grp: 'bcdgrp', rol: 'rmi' }" :disabled="true" :disabledExtkey="true" :disabledRef="true" :haveAdrLabel="false" :isAdrblk="true" :isFieldLabelVisible="false" :model="model" :charmod="0" ptytyp="B" :isLabel120="false"></c-ptap> </el-form-item> </el-form-item> </c-col> <c-col :span="24" class="fieldName"> <el-form-item label="2nd Collecting Bank" style="margin-bottom: 0;"> <el-form-item label-width="0" style="margin-bottom: 10px;"> <c-ptap :argadr="{ title: '第二代收行', grp: 'bcdgrp', rol: 'co2' }" :disabled="true" :disabledExtkey="true" :disabledRef="true" :haveAdrLabel="false" :isAdrblk="true" :isFieldLabelVisible="false" :model="model" :charmod="0" ptytyp="B" :isLabel120="false"></c-ptap> </el-form-item> </el-form-item> </c-col> </c-col> </div> </template> <script> import event from "../event"; export default { components: { }, inject: ["root"], props: ["model", "codes"], mixins: [event], data() { return {}; }, methods: { }, created: function () {}, }; </script> <style></style>