<template> <div class="eibs"> <!-- ------------------左侧------------------> <c-col :span="12" style="padding-right: 20px"> <c-col :span="24"> <c-form-item :label="$t('trnmod.SG000227')" prop="trnmod.reconebch"> <c-input v-model="model.trnmod.reconebch" maxlength="35" :placeholder="$t('other.please_enter')+$t('trnmod.SG000227')"></c-input> </c-form-item> </c-col> <c-col :span="24"> <c-form-item label="附言" prop="trnmod.commen"> <c-input type="textarea" v-model="model.trnmod.commen" maxlength="30" show-word-limit :placeholder="$t('other.please_enter')+'附言'" ></c-input> </c-form-item> </c-col> </c-col> <!-- ------------------右侧------------------> <c-col :span="12" style="padding-left: 20px"> <c-col :span="24"> <c-form-item :label="$t('trnmod.SG000228')" prop="trnmod.reconebchnam"> <c-input type="textarea" v-model="model.trnmod.reconebchnam" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('trnmod.SG000228')" ></c-input> </c-form-item> </c-col> <c-col :span="24"> <el-form-item label="业务种类" prop="trnmod.bustyp"> <c-select v-model="model.trnmod.bustyp" :code="codes.bustyp" style="width:100%" :placeholder="$t('other.please_enter')+'业务种类'"> </c-select> </el-form-item> </c-col> </c-col> <!-- SG000227 : 收款直接参与者行号 --> <!-- <c-col :span="12" style="padding-right: 20px">--> <!-- <c-form-item :label="$t('trnmod.SG000227')" prop="trnmod.reconebch">--> <!-- <c-input v-model="model.trnmod.reconebch" maxlength="35" :placeholder="$t('other.please_enter')+$t('trnmod.SG000227')"></c-input>--> <!-- </c-form-item>--> <!-- </c-col>--> <!-- <!– SG000228 : 收款直接参与者名称 –>--> <!-- --> <!-- <c-col :span="12" style="padding-left: 20px">--> <!-- <c-form-item :label="$t('trnmod.SG000228')" prop="trnmod.reconebchnam">--> <!-- <c-input type="textarea" v-model="model.trnmod.reconebchnam" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('trnmod.SG000228')" ></c-input>--> <!-- </c-form-item>--> <!-- </c-col>--> <!-- <!– SG000229 : 附言 –>--> <!-- --> <!-- <c-col :span="12">--> <!-- <c-form-item label="附言" prop="trnmod.commen">--> <!-- <c-input type="textarea" v-model="model.trnmod.commen" maxlength="30" show-word-limit :placeholder="$t('other.please_enter')+'附言'" ></c-input>--> <!-- </c-form-item>--> <!-- </c-col>--> <!-- <!– SG000230 : 业务种类 –>--> <!-- --> <!-- <c-col :span="12">--> <!-- <el-form-item label="业务种类" prop="trnmod.bustyp">--> <!-- <c-select v-model="model.trnmod.bustyp" --> <!-- :code="codes.bustyp"--> <!-- style="width:100%" :placeholder="$t('other.please_enter')+'业务种类'">--> <!-- </c-select>--> <!-- </el-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/Bctset/Event" export default { inject: ['root'], props:["model","codes"], mixins: [commonProcess], data(){ return { } }, methods:{...Event}, created:function(){ } } </script> <style> </style>