Adcpame.vue 1.33 KB
Newer Older
孟冬雪 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<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"
wangren committed
25
import commonProcess from "~/mixin/commonProcess";
孟冬雪 committed
26 27 28 29 30 31
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Lttame/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
32
    mixins: [commonProcess],
孟冬雪 committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46
    data(){
        return {

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

    }
}
</script>
<style>

</style>