<template>
  <div class="eibs-tab">
                                               
       <c-col :span="20">
        <el-form-item label="Additional Conditions" prop="lidgrp.blk.adlcnd">
            <c-input type="textarea" v-model="model.lidgrp.blk.adlcnd" maxlength="52000" :rows="30" show-word-limit placeholder="请输入Additional Conditions" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="2">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onAdlcndButtxmsel">
            ...
        </c-button>
       </c-col>
                  
       <c-col :span="24" class="centerLable marginLable">
	    <c-checkbox v-model="model.lidgrp.rec.spcbenflg">Special payment conditions for beneficiary exists</c-checkbox>
       </c-col>
                  
       <c-col :span="24" class="centerLable marginLable">
	    <c-checkbox v-model="model.lidgrp.rec.spcrcbflg">Special Payment Conditions for specified Bank only</c-checkbox>
       </c-col>
                  
       <c-col :span="24" class="centerLable marginLable">
	    <c-checkbox v-model="model.lidgrp.rec.redclsflg">Red/Green Clause</c-checkbox>
       </c-col>
                                   
       <c-col :span="20">
        <el-form-item label="Instructions to Pay.," prop="lidgrp.blk.insbnk">
            <c-input type="textarea" v-model="model.lidgrp.blk.insbnk" maxlength="780" :rows="6" show-word-limit placeholder="请输入Instructions to Pay.," ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="2">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onInsbnkButtxmsel">
            ...
        </c-button>
       </c-col>
                   </div>
</template>
<script>
import Api from "~/service/Api"
import CommonProcess from "~/mixin/CommonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litopn/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [CommonProcess],
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>
.centerLable {
  margin-left: -10px;
  height: 32px;
  line-height: 32px;
}
.marginLable {
  padding-left: 160px;
}
</style>