<template> <div class="eibs-tab"> <c-col :span="12"> <c-col :span="24"> <c-ptap :model="model" :argadr="{ title: 'Reimbursement Bank', grp: 'ltdgrp', rol: 'rmt', }" :noRef="false" @onSeainf="onSeainf" @onAplpDet="onBenpDet" disabled :disabledRef="true" :disabledExtkey="true" > </c-ptap> </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="Please input Account Identification" > </c-select> </el-form-item> </c-col> <c-col :span="24"> <c-form-item label="Reimbursing Bank Account Identification" prop="ltdgrp.rec.rmbact" > <c-input v-model="model.ltdgrp.rec.rmbact" maxlength="35" disabled placeholder="Please input Reimbursing Bank Account Identification" ></c-input> </c-form-item> </c-col> <!-- SF000254 : Charges Definition --> <c-col :span="24"> <el-form-item label="Charges Definition" prop="ltdgrp.rec.rmbcha"> <c-select v-model="model.ltdgrp.rec.rmbcha" style="width: 100%" placeholder="Please input Charges Definition" :code="codes.rmbcha" > </c-select> </el-form-item> </c-col> <!-- SF000260 : Other Charges --> <c-col :span="24"> <c-form-item label="Other Charges" prop="ltdgrp.blk.rmbcha"> <c-input type="textarea" v-model="model.ltdgrp.blk.rmbcha" maxlength="35" show-word-limit placeholder="Please input Other Charges" ></c-input> </c-form-item> </c-col> <!-- S0000334 : MT747 :77A: --> <c-col :span="24"> <c-form-item label=": MT747 :77A:" prop="lttp.rmbnar"> <c-input type="textarea" v-model="model.lttp.rmbnar" maxlength="35" show-word-limit placeholder="Please input : MT747 :77A:" ></c-input> </c-form-item> </c-col> <!-- SF000365 : Applicable Rules RMB --> <c-col :span="24"> <el-form-item label="Applicable Rules RMB" prop="ltdgrp.rec.apprulrmb"> <c-select v-model="model.ltdgrp.rec.apprulrmb" style="width: 100%" placeholder="Please input Applicable Rules RMB" :code="codes.apprulrmb" > </c-select> </el-form-item> </c-col> <!-- SF000366 : Date of Authorisation to Reimburse --> <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="Please input Date of Authorisation to Reimburse" ></c-date-picker> </el-form-item> </c-col> </c-col> </div> </template> <script> import Api from "~/service/Api"; import commonProcess from "~/mixin/commonProcess"; import CodeTable from "~/config/CodeTable"; import Event from "~/model/Lttame/Event"; import Ptap from "~/views/Public/Ptap"; export default { components: { "c-ptap": Ptap }, inject: ["root"], props: ["model", "codes"], mixins: [commonProcess], data() { return {}; }, methods: { ...Event }, created: function () {}, }; </script> <style> </style>