Adcp.vue 2.14 KB
Newer Older
孟冬雪 committed
1 2
<template>
  <div class="eibs-tab">
3 4 5 6 7 8
                             <!-- SF000264 : Additional Conditions -->
                  
       <c-col :span="12">
        <c-form-item :label="$t('lttp.SF000264')" prop="ltdgrp.blk.adlcnd">
            <c-input type="textarea" v-model="model.ltdgrp.blk.adlcnd" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('lttp.SF000264')" ></c-input>
        </c-form-item>
孟冬雪 committed
9 10
        </c-col>
                  
11
       <c-col :span="12">
孟冬雪 committed
12
        <c-button size="small" type="primary" icon="el-icon-search" @click="onAdlcndButtxmsel">
13
             {{$t('lttp.CF000261')}}
孟冬雪 committed
14 15 16
        </c-button>
       </c-col>
                  
17 18 19 20 21 22
       <c-col :span="12">
	    <c-checkbox v-model="model.ltdgrp.rec.spcbenflg">{{$t('lttp.CG000379')}}</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.ltdgrp.rec.spcrcbflg">{{$t('lttp.CG000380')}}</c-checkbox>
孟冬雪 committed
23 24
       </c-col>
                  
25 26
       <c-col :span="12">
	    <c-checkbox v-model="model.ltdgrp.rec.redclsflg">{{$t('lttp.CF000263')}}</c-checkbox>
孟冬雪 committed
27
       </c-col>
jianglong committed
28
                 <!-- SF000265 : 付款指示 -->
29 30 31 32 33
                  
       <c-col :span="12">
        <c-form-item :label="$t('lttp.SF000265')" prop="ltdgrp.blk.insbnk">
            <c-input type="textarea" v-model="model.ltdgrp.blk.insbnk" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('lttp.SF000265')" ></c-input>
        </c-form-item>
孟冬雪 committed
34 35
        </c-col>
                  
36
       <c-col :span="12">
孟冬雪 committed
37
        <c-button size="small" type="primary" icon="el-icon-search" @click="onInsbnkButtxmsel">
38
             {{$t('lttp.CF000262')}}
孟冬雪 committed
39
        </c-button>
40 41 42
       </c-col>
                 <!-- SF000266 : Accept., Negot. Bank -->
  </div>
孟冬雪 committed
43 44 45
</template>
<script>
import Api from "~/service/Api"
wangren committed
46
import commonProcess from "~/mixin/commonProcess";
孟冬雪 committed
47 48 49 50 51 52
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Lttopn/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
53
    mixins: [commonProcess],
孟冬雪 committed
54 55
    data(){
        return {
56 57

        }
孟冬雪 committed
58 59 60 61 62 63 64 65
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>
66

孟冬雪 committed
67
</style>