Adcpame.vue 1.29 KB
Newer Older
孟冬雪 committed
1 2 3 4 5 6 7 8 9 10
<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">
jianglong committed
11
	    <c-checkbox v-model="model.ltdgrp.rec.redclsflg">红/绿条款?</c-checkbox>
孟冬雪 committed
12 13 14
       </c-col>
                  
       <c-col :span="12">
jianglong committed
15
	    <c-checkbox v-model="model.ltdgrp.rec.spcbenflg">受益人特殊付款条件</c-checkbox>
孟冬雪 committed
16 17 18
       </c-col>
                  
       <c-col :span="12">
jianglong committed
19
	    <c-checkbox v-model="model.ltdgrp.rec.spcrcbflg">银行专用特殊付款条件</c-checkbox>
孟冬雪 committed
20 21 22 23 24
       </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>