1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<template>
<div class="eibs-tab">
<!-- SG000374 : Special Payment Cond. -->
<c-col :span="12">
<c-form-item :label="$t('lttp.SG000374')" prop="ltdgrp.blk.spcben">
<c-input type="textarea" v-model="model.ltdgrp.blk.spcben" maxlength="65" show-word-limit :placeholder="$t('other.please_enter')+$t('lttp.SG000374')" ></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-button size="small" type="primary" icon="el-icon-search" @click="onSpcbenButtxmsel">
{{$t('lttp.CG000382')}}
</c-button>
</c-col>
<!-- SG000381 : for Beneficiary -->
</div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Lttopn/Event"
export default {
inject: ['root'],
props:["model","codes"],
mixins: [commonProcess],
data(){
return {
}
},
methods:{...Event},
created:function(){
}
}
</script>
<style>
</style>