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
118
119
120
<template>
<div class="eibs-tab">
<!-- ====================左边======================= -->
<c-col :span="11">
<c-col :span="24">
<el-form-item label="Our Reference" prop="ccdgrp.rec.ownref">
<c-input v-model="model.ccdgrp.rec.ownref" maxlength="16" placeholder="Please enter Our Reference" disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="24" class="custom-box-wrap">
<el-form-item label="Draft Amount" prop="ccdgrp.cbs.max.cur">
<c-select-cur dbCode="CURTXT"
disabled
placeholder="请选择币种"
style="width: 115px;"
sort="SRT"
v-model="model.ccdgrp.cbs.max.cur"
></c-select-cur>
</el-form-item>
<div class="box-3">
<el-form-item label-width="5px" prop="ccdgrp.cbs.max.amt">
<c-input-currency
disabled
:currency="model.ccdgrp.cbs.max.cur"
placeholder="请选择金额"
style="width: 100%;"
v-model="model.ccdgrp.cbs.max.amt"
></c-input-currency>
</el-form-item>
</div>
</c-col>
<c-col :span="24" class="custom-box-wrap">
<el-form-item label="Open Amount" prop="ccdgrp.cbs.opn1.cur">
<c-select-cur dbCode="CURTXT"
disabled
placeholder="请选择币种"
style="width: 115px;"
sort="SRT"
v-model="model.ccdgrp.cbs.opn1.cur"
></c-select-cur>
</el-form-item>
<div class="box-3">
<el-form-item label-width="5px" prop="ccdgrp.cbs.opn1.amt">
<c-input-currency
disabled
:currency="model.ccdgrp.cbs.opn1.cur"
placeholder="请选择金额"
style="width: 100%;"
v-model="model.ccdgrp.cbs.opn1.amt"
></c-input-currency>
</el-form-item>
</div>
</c-col>
<c-col :span="24">
<el-form-item label="Date of Draft" prop="ccdgrp.rec.chkdat">
<c-date-picker type="date" v-model="model.ccdgrp.rec.chkdat" style="width: 100%" placeholder="请选择出票日期" disabled></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="Select Reject Type" prop="rejtypsel">
<c-select v-model="model.rejtypsel" style="width: 100%" placeholder="请选择退单原因" :clearable="false" :code="codes.rejtypsel" @change="changeRejtypsel">
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="" style="margin-left: 0px" prop="clsflg" class="checkbox-left">
<c-checkbox v-model="model.clsflg" true-label="X" false-label="" disabled>Close Contract</c-checkbox>
</el-form-item>
</c-col>
</c-col>
<!-- ====================右边======================= -->
<c-col :span="11" :offset="1">
<c-col :span="24">
<el-form-item label="Form of Clean Coll." prop="ccdgrp.rec.ccform">
<c-select v-model="model.ccdgrp.rec.ccform" style="width: 100%" placeholder="请选择光票托收形式" dbCode="CCFORM" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="Payment Disposition" prop="ccdgrp.rec.purflg">
<c-select v-model="model.ccdgrp.rec.purflg" style="width: 100%" placeholder="请选择付款方式 " dbCode="PURFLG" disabled>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<c-form-item label="common reason for returned bills" prop="ccdgrp.blk.retson">
<c-input type="textarea" :rows="6" v-model="model.ccdgrp.blk.retson" maxlength="600" show-word-limit placeholder="请输入退票原因"></c-input>
</c-form-item>
</c-col>
</c-col>
</div>
</template>
<script>
import event from "../event";
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {};
},
computed: {
},
methods: {
},
created: function() {}
};
</script>
<style>
</style>