<template> <div class="eibs-tab"> <!-- ======================= 左边 ========================= --> <c-col :span="12" style="padding-right: 20px"> <!-- S0000005 : Verification Certificate Number --> <c-col :span="24"> <el-form-item label="Verification Certificate Number" prop="lendoc.vercerref"> <c-input type="textarea" v-model="model.lendoc.vercerref" maxlength="20" show-word-limit :placeholder="$t('other.please_enter')+'Verification Certificate Number'"></c-input> </el-form-item> </c-col> <!-- S0000006 : Declaration Number --> <c-col :span="24"> <el-form-item label="Declaration Number" prop="lendoc.decnum"> <c-input v-model="model.lendoc.decnum" maxlength="22" :placeholder="$t('other.please_enter')+'Declaration Number'"></c-input> </el-form-item> </c-col> </c-col> <!-- ======================= 右边 ========================= --> <c-col :span="12" style="padding-left: 20px"> <c-col :span="24"> <c-col :span="4"> <c-checkbox v-model="model.lendoc.actflg">Input Account</c-checkbox> </c-col> <c-col :span="20"> <el-form-item label="ACT" prop="lendoc.account"> <c-input type="textarea" v-model="model.lendoc.account" maxlength="25" show-word-limit :placeholder="$t('other.please_enter')+'ACT'"></c-input> </el-form-item> </c-col> </c-col> </c-col> </div> </template> <script> import Event from "../event"; export default { inject: ["root"], props: ["model", "codes"], mixins: [Event], data() { return {}; }, methods: {}, created: function() {} }; </script> <style> </style>