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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<template>
<div class="eibs">
<c-col :span="12" style="padding-right: 20px;">
<c-col :span="24">
<c-ptap
:model="model"
:argadr="{
title: '偿付行',
grp: 'ltdgrp',
rol: 'rmt',
}"
:noRef="false"
@onSeainf="onSeainf"
@onAplpDet="onBenpDet"
disabled
:disabledRef="true"
:disabledExtkey="true"
>
</c-ptap>
</c-col>
<c-col :span="24">
<el-form-item
label="帐户标识"
prop="ltdgrp.rmt.pts.dftact"
>
<c-select
v-model="model.ltdgrp.rmt.pts.dftact"
style="width: 100%"
placeholder="请输入帐户标识"
>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<c-form-item
label="偿付银行帐户标识"
prop="ltdgrp.rec.rmbact"
>
<c-input
v-model="model.ltdgrp.rec.rmbact"
maxlength="35"
disabled
placeholder="请输入偿付银行帐户标识"
></c-input>
</c-form-item>
</c-col>
<!-- SF000254 : Charges Definition -->
<c-col :span="24">
<el-form-item label="费用定义" prop="ltdgrp.rec.rmbcha">
<c-select
v-model="model.ltdgrp.rec.rmbcha"
style="width: 100%"
placeholder="请输入费用定义"
:code="codes.rmbcha"
>
</c-select>
</el-form-item>
</c-col>
<!-- SF000260 : Other Charges -->
<c-col :span="24">
<c-form-item label="其他费用" prop="ltdgrp.blk.rmbcha">
<c-input
type="textarea"
v-model="model.ltdgrp.blk.rmbcha"
maxlength="35"
show-word-limit
placeholder="请输入其他费用"
></c-input>
</c-form-item>
</c-col>
<!-- S0000334 : MT747 :77A: -->
<c-col :span="24">
<c-form-item label="MT747:77A:" prop="lttp.rmbnar">
<c-input
type="textarea"
v-model="model.lttp.rmbnar"
maxlength="35"
show-word-limit
placeholder="请输入"
></c-input>
</c-form-item>
</c-col>
<!-- SF000365 : 适用规则 RMB -->
<c-col :span="24">
<el-form-item label="适用规则 RMB" prop="ltdgrp.rec.apprulrmb">
<c-select
v-model="model.ltdgrp.rec.apprulrmb"
style="width: 100%"
placeholder="请输入适用规则 RMB"
:code="codes.apprulrmb"
>
</c-select>
</el-form-item>
</c-col>
<!-- SF000366 : Date of Authorisation to Reimburse -->
<c-col :span="24">
<el-form-item
label="授权偿付日期"
prop="ltdgrp.rec.autdat"
>
<c-date-picker
type="date"
v-model="model.ltdgrp.rec.autdat"
style="width: 100%"
disabled
placeholder="请输入授权偿付日期"
></c-date-picker>
</el-form-item>
</c-col>
</c-col>
</div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Lttame/Event";
import Ptap from "~/views/Public/Ptap";
export default {
components: { "c-ptap": Ptap },
inject: ["root"],
props: ["model", "codes"],
mixins: [commonProcess],
data() {
return {};
},
methods: { ...Event },
created: function () {},
};
</script>
<style>
</style>