<template> <div class="eibs-tab"> <c-col :span="12"> <c-form-item label="Drag Drop Sender" prop="fxtp0.recget.sdamod.dadsnd"> <c-input v-model="model.fxtp0.recget.sdamod.dadsnd" :placeholder="$t('other.please_enter')+'Drag Drop Sender'"></c-input> </c-form-item> </c-col> <!-- S0000003 : Reference --> <c-col :span="12"> <c-form-item :label="$t('fxtp0.S0000003')" prop="fxdgrp.rec.ownref"> <c-input v-model="model.fxdgrp.rec.ownref" maxlength="16" :placeholder="$t('other.please_enter')+$t('fxtp0.S0000003')"></c-input> </c-form-item> </c-col> <c-col :span="12"> <c-form-item label="" prop="fxtp0.recget.sdamod.seainf"> <c-input v-model="model.fxtp0.recget.sdamod.seainf" :placeholder="$t('other.please_enter')+''"></c-input> </c-form-item> </c-col> <!-- S0000004 : Name --> <c-col :span="12"> <c-form-item label="Externally Displayed Name to Identify the Contract" prop="fxdgrp.rec.nam"> <c-input v-model="model.fxdgrp.rec.nam" maxlength="40" :placeholder="$t('other.please_enter')+'Externally Displayed Name to Identify the Contract'"></c-input> </c-form-item> </c-col> <!-- S0000006 : Liquidation Type --> <c-col :span="12"> <el-form-item :label="$t('fxtp0.S0000006')" prop="fxdgrp.rec.fxtyp"> <c-select v-model="model.fxdgrp.rec.fxtyp" style="width:100%" :placeholder="$t('other.please_enter')+$t('fxtp0.S0000006')"> </c-select> </el-form-item> </c-col> <!-- S0000009 : Liquidation Party --> <!-- S0000010 : Ref. --> <c-col :span="12"> <c-form-item :label="$t('fxtp0.S0000009')" prop="fxdgrp.apl.pts.ref"> <c-input v-model="model.fxdgrp.apl.pts.ref" maxlength="20" :placeholder="$t('other.please_enter')+$t('fxtp0.S0000009')"></c-input> </c-form-item> </c-col> <!-- S0000007 : Foreign Cur. Amount --> <c-col :span="12"> <c-form-item :label="$t('fxtp0.S0000007')" prop="fxdgrp.cbs.max.cur"> <c-input v-model="model.fxdgrp.cbs.max.cur" maxlength="3" :placeholder="$t('other.please_enter')+$t('fxtp0.S0000007')"></c-input> </c-form-item> </c-col> <c-col :span="12"> <c-form-item label="Balance" prop="fxdgrp.cbs.max.amt"> <c-input v-model="model.fxdgrp.cbs.max.amt" :placeholder="$t('other.please_enter')+'Balance'"></c-input> </c-form-item> </c-col> <c-col :span="12"> <c-form-item label="Name of Party" prop="fxdgrp.apl.pts.nam"> <c-input v-model="model.fxdgrp.apl.pts.nam" maxlength="40" :placeholder="$t('other.please_enter')+'Name of Party'"></c-input> </c-form-item> </c-col> <!-- S0000008 : Domestic Cur. Amount --> <c-col :span="12"> <c-form-item :label="$t('fxtp0.S0000008')" prop="fxdgrp.cbs.nom1.cur"> <c-input v-model="model.fxdgrp.cbs.nom1.cur" maxlength="3" :placeholder="$t('other.please_enter')+$t('fxtp0.S0000008')"></c-input> </c-form-item> </c-col> <c-col :span="12"> <c-form-item label="Balance" prop="fxdgrp.cbs.nom1.amt"> <c-input v-model="model.fxdgrp.cbs.nom1.amt" :placeholder="$t('other.please_enter')+'Balance'"></c-input> </c-form-item> </c-col> <!-- S0000011 : Open Date --> <c-col :span="12"> <el-form-item :label="$t('fxtp0.S0000011')" prop="fxdgrp.rec.opndat"> <c-date-picker type="date" v-model="model.fxdgrp.rec.opndat" style="width:100%" :placeholder="$t('other.please_enter')+$t('fxtp0.S0000011')"></c-date-picker> </el-form-item> </c-col> <!-- S0000012 : Value Date --> <c-col :span="12"> <el-form-item label="Value date" prop="fxdgrp.rec.valdat"> <c-date-picker type="date" v-model="model.fxdgrp.rec.valdat" style="width:100%" :placeholder="$t('other.please_enter')+'Value date'"></c-date-picker> </el-form-item> </c-col> <!-- S0000014 : Liquidation Rate --> <c-col :span="12"> <c-form-item :label="$t('fxtp0.S0000014')" prop="fxdgrp.rec.rat"> <c-input v-model="model.fxdgrp.rec.rat" :placeholder="$t('other.please_enter')+$t('fxtp0.S0000014')"></c-input> </c-form-item> </c-col> <!-- S0000013 : Middle Rate --> <c-col :span="12"> <c-form-item label="Middle Rate" prop="fxdgrp.rec.midrat"> <c-input v-model="model.fxdgrp.rec.midrat" :placeholder="$t('other.please_enter')+'Middle Rate'"></c-input> </c-form-item> </c-col> </div> </template> <script> import Api from "~/service/Api" import commonProcess from "~/mixin/commonProcess"; import CodeTable from "~/config/CodeTable" import Event from "../model/Event" export default { inject: ['root'], props:["model","codes"], mixins: [commonProcess], data(){ return { } }, methods:{...Event}, created:function(){ } } </script> <style> </style>