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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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
<template>
<div class="eibs-tab">
<!-- SF000060 : 远期单据指示 -->
<c-col :span="20">
<c-col :span="21">
<c-form-item label="Instructions regarding Usance Documengts" prop="bedsnd.usadet">
<c-input
type="textarea"
v-model="model.bedsnd.usadet"
maxlength="650"
:rows="8"
show-word-limit
placeholder="请输入远期单据指示"
></c-input>
</c-form-item>
</c-col>
<c-col :span="3">
<c-button
size="small"
type="primary"
icon="el-icon-search"
@click="showGridPromptDialog('bedsnd.usatxt.buttxmsel',null,null,{TXT:'bedsnd.usadet'},{TXT:false},'doxpDialog')"
>
<!-- @click="onUsatxtButtxmsel" -->
...
</c-button>
</c-col>
</c-col>
<!-- SF000059 : 偿付条款 -->
<c-col :span="20">
<c-col :span="21">
<c-form-item label="Reimmursement Pharse" prop="bedsnd.addphr">
<c-input
type="textarea"
v-model="model.bedsnd.addphr"
maxlength="650"
:rows="8"
show-word-limit
placeholder="请输入偿付条款"
></c-input>
</c-form-item>
</c-col>
<c-col :span="3">
<c-button
size="small"
type="primary"
icon="el-icon-search"
@click="showGridPromptDialog('bedsnd.rgfphr.buttxmsel',null,null,{TXT:'bedsnd.addphr'},{TXT:false},'doxpDialog')"
>
<!-- @click="onRgfphrButtxmsel" -->
...
</c-button>
</c-col>
</c-col>
<!-- SG000345 : 新受益人地址 -->
<c-col :span="20">
<c-form-item label="New Ben.Address" prop="bedsnd.newbenadr">
<c-input
type="textarea"
v-model="model.bedsnd.newbenadr"
maxlength="175"
:rows="5"
show-word-limit
placeholder="请输入新受益人地址"
:disabled="model.ameadrflg==''"
style="width:60%"
></c-input>
</c-form-item>
</c-col>
<!-- S0000347 : 新受益人编号 -->
<c-col :span="20">
<c-form-item label="New Beneficiary Ref." prop="bedgrp.blk.benref">
<c-input
type="textarea"
v-model="model.bedgrp.blk.benref"
maxlength="160"
:rows="5"
show-word-limit
placeholder="请输入新受益人编号"
style="width:60%"
></c-input>
</c-form-item>
</c-col>
</div>
</template>
<script>
import Api from '~/service/Api'
import commonProcess from '~/mixin/commonProcess'
import CodeTable from '~/config/CodeTable'
import Event from '~/model/Betsnd/Event'
export default {
inject: ['root'],
props: ['model', 'codes'],
mixins: [commonProcess],
data() {
return {}
},
methods: { ...Event },
created: function () {},
}
</script>
<style></style>