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
107
108
109
110
111
112
113
114
115
116
117
<template>
<c-content class="eibs-tab" :height="200">
<div class="infTopBtn">
<c-button size="small" type="primary">toSearch</c-button>
<el-button-group>
<c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
<c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
</el-button-group>
<c-button size="small" type="primary">Print</c-button>
<c-button size="small" type="primary" disabled>Use</c-button>
<c-button size="small" type="primary" disabled>Loginfo</c-button>
<c-button size="small" type="primary">Exit</c-button>
</div>
<c-row class="infrow" style="margin-top:50px;">
<!-- Additional Conditions -->
<c-col :span="19" :offset="1">
<el-form-item label="附加条件" label-width="100px" prop="ledgrp.blk.adlcnd">
<c-input
type="textarea"
:rows="16"
v-model="model.ledgrp.blk.adlcnd"
maxlength="65"
show-word-limit
placeholder="请输入附加条件"
></c-input>
</el-form-item>
</c-col>
<c-col :span="3" :offset="1">
<c-button
size="small"
type="primary"
icon="el-icon-search"
@click="onAdlcndButtxmsel"
>
...
</c-button>
</c-col>
<!-- 受益人特殊付款条件 -->
<c-col :span="24" class="adcp_cheak">
<c-checkbox v-model="model.ledgrp.rec.spcbenflg">
受益人特殊付款条款
</c-checkbox>
</c-col>
<!-- 银行专用特殊付款条件 -->
<c-col :span="22" class="adcp_cheak">
<c-checkbox v-model="model.ledgrp.rec.spcrcbflg">
收款银行特殊付款条款
</c-checkbox>
</c-col>
<!-- 红/绿条款 -->
<c-col :span="22" :offset="1" class="adcp_cheak">
<c-checkbox v-model="model.ledgrp.rec.redclsflg">
红/绿条款
</c-checkbox>
</c-col>
<!-- Instructions to Pay,accept,negot,bank -->
<c-col :span="19" :offset="1">
<el-form-item label="付款、承兑、议付银行指示" label-width="100px" prop="ledgrp.blk.insbnk">
<c-input
type="textarea"
:rows="4"
v-model="model.ledgrp.blk.insbnk"
maxlength="65"
show-word-limit
placeholder="付款、承兑、议付银行指示"
></c-input>
</el-form-item>
</c-col>
<c-col :span="3" :offset="1">
<c-button
size="small"
type="primary"
icon="el-icon-search"
@click="onInsbnkButtxmsel"
>
...
</c-button>
</c-col>
</c-row>
</c-content>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Infled/Event"
export default {
inject: ['root'],
props:["model","codes"],
mixins: [commonProcess],
data(){
return {
}
},
methods:{...Event},
created:function(){
}
}
</script>
<style>
.adcp_button{
margin: 20px 0 0 -10px;
}
.adcp_cheak {
margin: 0px 0 10px 150px;
}
</style>