<template> <div class="eibs-tab"> <!-- S0000140 : 单据金额 --> <!-- S0000006 : 附加金额 --> <c-col :span="12"> <el-form-item :label="$t('aammod.S0000006')" prop="brdgrp.cbs.opn2.cur"> <c-select v-model="model.brdgrp.cbs.opn2.cur" style="width:100%" :placeholder="$t('other.please_enter')+$t('aammod.S0000006')"> </c-select> </el-form-item> </c-col> <c-col :span="12"> <c-form-item :label="$t('aammod.S0000006')" prop="brdgrp.cbs.max2.amt"> <c-input v-model="model.brdgrp.cbs.max2.amt" :placeholder="$t('other.please_enter')+$t('aammod.S0000006')"></c-input> </c-form-item> </c-col> <!-- S0000141 : Charges Deducted --> <c-col :span="12"> <c-form-item :label="$t('brtp.S0000149')" prop="brdgrp.blk.chaded"> <c-input type="textarea" v-model="model.brdgrp.blk.chaded" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('brtp.S0000149')" ></c-input> </c-form-item> </c-col> <!-- S0000142 : Charges Added --> <c-col :span="12"> <c-form-item :label="$t('brtp.S0000215')" prop="brdgrp.blk.chaadd"> <c-input type="textarea" v-model="model.brdgrp.blk.chaadd" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('brtp.S0000215')" ></c-input> </c-form-item> </c-col> <!-- S0000143 : Amount to be Paid --> <c-col :span="12"> <c-form-item :label="$t('brtp.S0000216')" prop="brdgrp.rec.totcur"> <c-input v-model="model.brdgrp.rec.totcur" maxlength="3" :placeholder="$t('other.please_enter')+$t('brtp.S0000216')"></c-input> </c-form-item> </c-col> <c-col :span="12"> <c-form-item label="Total Amount to be Paid" prop="brdgrp.rec.totamt"> <c-input v-model="model.brdgrp.rec.totamt" :placeholder="$t('other.please_enter')+'Total Amount to be Paid'"></c-input> </c-form-item> </c-col> <c-col :span="12"> <c-form-item label="Drag Drop Sender" prop="brtp.acbp.ptsget.sdamod.dadsnd"> <c-input v-model="model.brtp.acbp.ptsget.sdamod.dadsnd" :placeholder="$t('other.please_enter')+'Drag Drop Sender'"></c-input> </c-form-item> </c-col> <!-- S0000144 : Account with Bank --> <c-col :span="12"> <c-form-item label="External Key of Address" prop="brdgrp.acb.pts.extkey"> <c-input v-model="model.brdgrp.acb.pts.extkey" maxlength="16" :placeholder="$t('other.please_enter')+'External Key of Address'"></c-input> </c-form-item> </c-col> <c-col :span="12"> <c-form-item label="" prop="brtp.acbp.ptsget.sdamod.seainf"> <c-input v-model="model.brtp.acbp.ptsget.sdamod.seainf" :placeholder="$t('other.please_enter')+''"></c-input> </c-form-item> </c-col> <c-col :span="12"> <c-form-item label="名称" prop="brdgrp.acb.namelc"> <c-input type="textarea" v-model="model.brdgrp.acb.namelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'名称'" ></c-input> </c-form-item> </c-col> <c-col :span="12"> <c-form-item label="Address Block" prop="brdgrp.acb.pts.adrblk"> <c-input type="textarea" v-model="model.brdgrp.acb.pts.adrblk" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Address Block'" ></c-input> </c-form-item> </c-col> <c-col :span="12"> <c-form-item label="Chinese address" prop="brdgrp.acb.dbfadrblkcn"> <c-input type="textarea" v-model="model.brdgrp.acb.dbfadrblkcn" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Chinese address'" ></c-input> </c-form-item> </c-col> <c-col :span="12"> <c-form-item label="地址" prop="brdgrp.acb.adrelc"> <c-input type="textarea" v-model="model.brdgrp.acb.adrelc" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'地址'" ></c-input> </c-form-item> </c-col> <!-- S0000145 : 不符点 --> </div> </template> <script> import Event from '../event'; export default { inject: ['root'], props:["model","codes"], mixins: [Event], data(){ return { } }, methods:{}, created:function(){ } } </script> <style> </style>