<template> <c-col class="eibs-tab"> <c-col :span="12" style="padding-right: 20px"> <c-col :span="24" class="fieldName"> <el-form-item label="Reimbursement Bank" style="margin-bottom: 0;"> <el-form-item label-width="0" style="margin-bottom: 10px;"> <c-ptap :argadr="{ title: 'Reimbursement Bank', grp: 'ltdgrp', rol: 'rmt' }" :haveAdrLabel="true" :isAdrblk="true" :isFieldLabelVisible="false" disabled disabledDetailTrn="true" disabledExtkey="true" :model="model" ptytyp="B" :isLabel120="false"></c-ptap> </el-form-item> </el-form-item> </c-col> <c-col :span="24"> <el-form-item label="Account Identification" prop="ltdgrp.rmt.pts.dftact"> <c-select v-model="model.ltdgrp.rmt.pts.dftact" style="width: 100%" placeholder="请选择"></c-select> </el-form-item> </c-col> <c-col :span="24"> <el-form-item label="Reimbursing Bank Account Identification" prop="ltdgrp.rec.rmbact"> <c-input v-model="model.ltdgrp.rec.rmbact" style="width: 100%" disabled placeholder="请输入"></c-input> </el-form-item> </c-col> <c-col :span="24"> <el-form-item label="Charges Definition" prop="ltdgrp.rec.rmbcha"> <c-select v-model="model.ltdgrp.rec.rmbcha" dbCode='rmbcha' style="width: 100%" placeholder="请选择"></c-select> </el-form-item> </c-col> <c-col :span="24"> <el-form-item label="Other Charges" prop="ltdgrp.blk.rmbcha"> <c-input v-model="model.ltdgrp.blk.rmbcha" type="textarea" style="width: 100%" maxlength="65" show-word-limit placeholder="请输入"></c-input> </el-form-item> </c-col> <c-col :span="24"> <el-form-item label="MT747 :77A:" prop="lttp.rmbnar"> <c-input v-model="model.lttp.rmbnar" type="textarea" style="width: 100%" maxlength="65" show-word-limit placeholder="请输入"></c-input> </el-form-item> </c-col> <c-col :span="24"> <el-form-item label="Applicable Rules RMB" prop="ltdgrp.rec.apprulrmb"> <c-select v-model="model.ltdgrp.rec.apprulrmb" dbCode='apprmb' style="width: 100%" placeholder="请选择"></c-select> </el-form-item> </c-col> <c-col :span="24"> <el-form-item label="Date of Authorisation to Reimburse" prop="ltdgrp.rec.autdat"> <c-date-picker type="date" v-model="model.ltdgrp.rec.autdat" style="width: 100%" disabled placeholder="请选择日期" value-format="yyyy-MM-dd"></c-date-picker> </el-form-item> </c-col> </c-col> </c-col> </template> <script> import event from "../event" export default { inject: ["root"], props: ["model", "codes"], mixins: [event], data(){ return{ } } } </script> <style> </style>