Adcp.vue 2.49 KB
Newer Older
1
<template>
Wuyuqiu committed
2
  <div class="eibs">
3 4
                                               
       <c-col :span="20">
jianglong committed
5 6
        <el-form-item label="附加条款" prop="lidgrp.blk.adlcnd">
            <c-input type="textarea" v-model="model.lidgrp.blk.adlcnd" maxlength="52000" :rows="25" show-word-limit placeholder="请输入附加条款" ></c-input>
7 8 9 10
        </el-form-item>
        </c-col>
                  
       <c-col :span="2">
11 12
        <c-button size="small" type="primary" icon="el-icon-search" 
        @click="showGridPromptDialog('litp.adlcnd.buttxmsel', null, null,{TXT: 'lidgrp.blk.adlcnd'}, {TXT: false})">
13
            
14 15 16
        </c-button>
       </c-col>
                  
17 18 19
       <c-col :span="24" >
	    <c-checkbox 
        style="margin-left:150px;padding: 0 10px;"
wangren committed
20
        :disabled="this.model.lidgrp.blk.spcrcb !='' "
21
        v-model="model.lidgrp.rec.spcbenflg"
jianglong committed
22
        >受益人特殊付款条款</c-checkbox>
23
        
24 25
       </c-col>
                  
26 27 28
       <c-col :span="24" >
	    <c-checkbox 
        style="margin-left:150px;padding: 0 10px;"
wangren committed
29
        :disabled="this.model.lidgrp.blk.spcben !='' "
jianglong committed
30
        v-model="model.lidgrp.rec.spcrcbflg">银行专用特殊付款条款</c-checkbox>
31 32
       </c-col>
                  
33 34 35
       <c-col :span="24" >
	    <c-checkbox 
        style="margin-left:150px;padding: 0 10px;"
jianglong committed
36
        v-model="model.lidgrp.rec.redclsflg">红/绿条款</c-checkbox>
37 38 39
       </c-col>
                                   
       <c-col :span="20">
jianglong committed
40 41
        <el-form-item label="付款指示Accept., Negot. Bank" prop="lidgrp.blk.insbnk">
            <c-input type="textarea" v-model="model.lidgrp.blk.insbnk" maxlength="12000" :rows="8" show-word-limit placeholder="请输入付款指示" ></c-input>
42 43 44 45
        </el-form-item>
        </c-col>
                  
       <c-col :span="2">
46 47
        <c-button size="small" type="primary" icon="el-icon-search" 
        @click="showGridPromptDialog('litp.insbnk.buttxmsel', null, null,{TXT: 'lidgrp.blk.insbnk'}, {TXT: false})">  
48
            
49 50 51 52 53 54
        </c-button>
       </c-col>
                   </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
55
import commonProcess from "~/mixin/commonProcess";
56 57 58 59 60 61
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litopn/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
62
    mixins: [commonProcess],
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
    data(){
        return {

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

    }
}
</script>
<style>
.marginLable {
  padding-left: 160px;
}
</style>