Adcpame.vue 3.24 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
3 4 5 6 7 8 9 10

    <el-col :span="11">
        <c-col :span="24">
        <el-form-item label="Additional Conditions" prop="lidgrp.blk.adlcnd">
            <c-input 
            disabled 
            :rows="12"
            type="textarea" v-model="model.lidgrp.blk.adlcnd" maxlength="65" show-word-limit placeholder="请输入Additional Conditions" ></c-input>
11 12
        </el-form-item>
        </c-col>
13 14 15 16 17 18

         <c-col :span="24">
        <el-form-item label="Block to enter additional info for Add/Delete" prop="litamep.adlcndamep.usrblk">
            <c-input 
            :rows="10"
            type="textarea" v-model="model.litamep.adlcndamep.usrblk" maxlength="65" show-word-limit placeholder="请输入Block to enter additional info for Add/Delete" ></c-input>
19 20
        </el-form-item>
        </c-col>
21 22 23 24 25 26 27 28 29 30 31 32
    </el-col>
    <!-- ================================ -->
    <el-col :span="11" :offset="1">
        <c-col :span="24">
        <el-form-item label="Historic Overview" prop="lidgrp.blk.adlcndame">
            <c-input 
            disabled
            :rows="12"
            type="textarea" v-model="model.lidgrp.blk.adlcndame" maxlength="50" show-word-limit placeholder="请输入Additional  Conditions Amendment History" ></c-input>
        </el-form-item>
        </c-col>
        <c-col :span="24">
33 34 35
	    <c-checkbox v-model="model.lidgrp.rec.redclsflg">Red/Green Clause</c-checkbox>
       </c-col>
                  
36
       <c-col :span="24">
37 38 39
	    <c-checkbox v-model="model.lidgrp.rec.spcbenflg">Special payment conditions for beneficiary exists</c-checkbox>
       </c-col>
                  
40
      
41
                  
42
       <c-col :span="24">
43 44 45 46 47 48 49 50 51 52 53
	    <c-checkbox v-model="model.lidgrp.rec.spcrcbflg">Special Payment Conditions for specified Bank only</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.litamep.adlcndamep.modflg">Modify Text to Replace</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.litamep.adlcndamep.modmanflg">Modify field for manual update</c-checkbox>
       </c-col>
                  
54
       <c-col :span="24">
55 56 57 58 59
        <c-button size="small" type="primary"  @click="onAdlcndamepButdif">
            Show Diff
        </c-button>
       </c-col>
                  
60 61 62 63
       <c-col :span="24">
        <c-button 
        disabled
        size="small" type="primary"  @click="onAdlcndamepButadd">
64 65 66 67
            Add Text
        </c-button>
       </c-col>
                  
68 69 70 71
       <c-col :span="24">
        <c-button 
        disabled
        size="small" type="primary" icon="el-icon-delete" @click="onAdlcndamepButdel">
72 73 74
            Delete text
        </c-button>
       </c-col>
75 76 77 78 79 80 81
    </el-col>
                                                                
       
                  
       
                  
       
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litdla/Event"

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

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

    }
}
</script>
<style>

</style>