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
<template>
<div class="eibs-tab">
<c-col :span="24">
<c-col :span="12" style="padding-right: 20px">
<c-col :span="24">
<c-col :span="12">
<el-form-item label="还款金额" prop="recgrp.rec.rcvcur">
<c-select disabled dbCode="curtxt" v-model="model.recgrp.rec.rcvcur" style="width:100%" placeholder="请选择币种">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item label-width="5px" prop="recgrp.rec.rcvamt">
<c-input-currency disabled v-model="model.recgrp.rec.rcvamt" placeholder="请输入金额"></c-input-currency>
</c-form-item>
</c-col>
</c-col>
</c-col>
<c-col :span="12" style="padding-left: 20px">
<c-col :span="24">
<el-form-item label="实际还款日期" prop="recgrp.rec.facrcvdat">
<c-date-picker :disabled="model.recpan.buttyp != 'RCV'" type="date" v-model="model.recgrp.rec.facrcvdat" style="width:100%" placeholder="请输入实际还款日期">
</c-date-picker>
</el-form-item>
</c-col>
</c-col>
</c-col>
</div>
</template>
<script>
import event from "../event";
import Default from "../model/default";
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [event, Default],
data() {
return {
};
},
methods: {},
mounted() {
},
computed: {
},
watch: {
},
created: function () { }
};
</script>
<style lang="less" scoped>
.el-textarea .el-textarea__inner {
height: 100px;
}
.page-wrap {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
padding: 2px;
box-sizing: border-box;
display: flex;
align-items: flex-start;
justify-content: flex-start;
flex-direction: column;
border: 1px solid #707070;
.form-content {
width: 100%;
flex: 1;
position: relative;
border: 1px solid #b1b1b1;
overflow-y: auto;
background-color: #fff;
padding: 5px 0;
}
}
.field {
text-align: left;
line-height: 32px;
width: 40px;
}
.fieldName {
/deep/ .el-form-item--small .el-form-item__label {
width: 200px !important;
justify-content: flex-start;
}
/deep/ .el-date-editor.el-input {
width: 90%;
}
/deep/ .el-select {
width: 90%;
}
}
.over {
/deep/ .el-form-item--small .el-form-item__label {
text-align: left;
}
}
</style>