<template> <div class="eibs-tab"> <c-col :span="12"> <el-form-item label="Additional Conditions Amendment" prop="ltdgrp.blk.adlcndame"> <c-input type="textarea" v-model="model.ltdgrp.blk.adlcndame" maxlength="50" show-word-limit placeholder="请输入Additional Conditions Amendment" ></c-input> </el-form-item> </c-col> <c-col :span="12"> <c-checkbox v-model="model.ltdgrp.rec.redclsflg">Red/Green Clause?</c-checkbox> </c-col> <c-col :span="12"> <c-checkbox v-model="model.ltdgrp.rec.spcbenflg">Special payment conditions for beneficiary exists</c-checkbox> </c-col> <c-col :span="12"> <c-checkbox v-model="model.ltdgrp.rec.spcrcbflg">Special Payment Conditions for specified Bank only</c-checkbox> </c-col> </div> </template> <script> import Api from "~/service/Api" import commonProcess from "~/mixin/commonProcess"; import CodeTable from "~/config/CodeTable" import Event from "~/model/Lttame/Event" export default { inject: ['root'], props:["model","codes"], mixins: [commonProcess], data(){ return { } }, methods:{...Event}, created:function(){ } } </script> <style> </style>