<template> <div class="eibs-tab"> <c-row> <c-col :span="24"> <!-- ------页面左侧----------- --> <c-col :span="12"> <c-col :span="24"> <c-form-item label="Verification Certificate Number" prop="lendoc.vercerref"> <c-input type="textarea" v-model="model.lendoc.vercerref" maxlength="20" show-word-limit placeholder="请输入Verification Certificate Number" ></c-input> </c-form-item> </c-col> <c-col :span="24"> <c-form-item label="Declaration Number" prop="lendoc.decnum"> <c-input v-model="model.lendoc.decnum" maxlength="22" placeholder="请输入Declaration Number"></c-input> </c-form-item> </c-col> </c-col> <!-- -----------页面右侧--------- --> <c-col :span="11" :offset="1"> <c-col :span="24"> <c-form-item label="ACT" prop="lendoc.account"> <c-input :disabled="model.lendoc.actflg!='X'" type="textarea" v-model="model.lendoc.account" maxlength="25" show-word-limit placeholder="请输入ACT" ></c-input> </c-form-item> </c-col> <c-col :span="24"> <c-col :span="6" :offset="6"> <c-checkbox v-model="model.lendoc.actflg">Input Account</c-checkbox> </c-col> </c-col> </c-col> </c-col> </c-row> <!-- <c-col :span="12"> <c-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> </c-form-item> </c-col> --> <!-- S0000005 : Verification Certificate Number --> <!-- <c-col :span="12"> <c-checkbox v-model="model.lendoc.actflg">{{$t('lendoc.C0000003')}}</c-checkbox> </c-col> <c-col :span="12"> <c-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> </c-form-item> </c-col> --> <!-- S0000006 : Declaration Number --> <!-- <c-col :span="12"> <c-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> </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/Getset/Event" export default { inject: ['root'], props:["model","codes"], mixins: [commonProcess], data(){ return { } }, methods:{...Event}, created:function(){ } } </script> <style> </style>