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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
| /** 产品客群清单列配置项 */
|
| export const CUSTOMERSCOLUMNS = [
| {
| label: "客群编码",
| name: "customerscode",
| defWidth: "",
| colunmType: "required",
| type: "input",
| placeholder: "请输入"
| },
| {
| label: "客群名称",
| name: "customersname",
| defWidth: "",
| colunmType: "required",
| type: "input",
| placeholder: "请输入"
| },
| {
| name: "changeflag",
| label: "变更标志",
| type: "text",
| width: "auto"
| },
| {
| label: "客群状态",
| name: "isdelete",
| defWidth: "",
| colunmType: "default",
| type: "select",
| placeholder: "请输入",
| options: []
| },
| {
| label: "操作",
| name: "operate",
| colunmType: "default",
| defWidth: "100",
| type: "operate",
| fixed: "right"
| }
| ];
| // 客群列表校验
| export const CUSTOMERSRULES = {
| customersname: [
| {
| required: false,
| message: "请输入客群名称",
| trigger: "blur"
| }
| ],
| customerscode: [
| {
| required: false,
| message: "请输入客群编码",
| trigger: "blur"
| }
| ]
| };
| export const VIEWCUSTOMERSCOLUMNS = [
| {
| label: "客群编码",
| prop: "customerscode",
| defWidth: "",
| width: "auto"
| },
| {
| label: "客群名称",
| prop: "customersname",
| defWidth: "",
| width: "auto"
| },
| {
| prop: "changeflag",
| label: "变更标志",
| width: "auto"
| },
| {
| label: "客群状态",
| prop: "isdeleteValue",
| defWidth: "",
| type: "select",
| width: "auto"
| }
| ];
| // 产品自定义还款方式-期数信息配置列表
| export const NPERCONFIGCOLUMNS = [
| {
| name: "termno",
| label: "期次号",
| defWidth: "100",
| align: "center",
| fixed: "left",
| colunmType: "",
| type: "text"
| },
| {
| name: "paymentdaytype",
| label: "还款日类型",
| defWidth: "150",
| colunmType: "required",
| placeholder: "请选择",
| type: "select"
| },
| {
| name: "ratiosum",
| label: "本金比例(%)",
| defWidth: "150",
| placeholder: "请输入",
| type: "input"
| },
| {
| name: "fixedsum",
| label: "本金固额(元)",
| defWidth: "150",
| placeholder: "请输入",
| type: "input"
| },
| {
| name: "isreturnrate",
| label: "是否归还利息",
| defWidth: "160",
| colunmType: "required",
| placeholder: "请选择",
| type: "select"
| },
| {
| name: "poundagerate",
| label: "手续费比例(%)",
| defWidth: "160",
| placeholder: "请输入",
| type: "input"
| },
| {
| name: "poundagefixed",
| label: "手续费固额(元)",
| defWidth: "160",
| placeholder: "请输入",
| type: "input"
| },
| {
| name: "guarantyrate",
| label: "担保费比例(%)",
| defWidth: "160",
| placeholder: "请输入",
| type: "input"
| },
| {
| name: "guarantyfixed",
| label: "担保费固额(元)",
| defWidth: "160",
| placeholder: "请输入",
| type: "input"
| },
| {
| name: "platformrate",
| label: "平台服务费比例(%)",
| defWidth: "180",
| placeholder: "请输入",
| type: "input"
| },
| {
| name: "platformfixed",
| label: "平台服务费固额(元)",
| defWidth: "180",
| placeholder: "请输入",
| type: "input"
| }
| // {
| // label: '操作',
| // name: 'operate',
| // colunmType: 'default',
| // defWidth: '100',
| // type: 'operate',
| // fixed: 'right'
| // }
| ];
| // 产品自定义还款方式-期数信息列表
| export const NPERCONFIGTABLECOLUMNS = [
| {
| prop: "termno",
| label: "期次号",
| defWidth: "100",
| align: "center",
| fixed: "left",
| type: "text"
| },
| {
| prop: "paymentdaytypeCn",
| label: "还款日类型",
| defWidth: "150",
| colunmType: "required",
| placeholder: "请选择",
| type: "select"
| },
| {
| prop: "ratiosum",
| label: "本金比例(%)",
| defWidth: "150",
| placeholder: "请输入",
| type: "input"
| },
| {
| prop: "fixedsum",
| label: "本金固额(元)",
| defWidth: "150",
| placeholder: "请输入",
| type: "input"
| },
| {
| prop: "isreturnrateCn",
| label: "是否归还利息",
| defWidth: "160",
| colunmType: "required",
| placeholder: "请选择",
| type: "select"
| },
| {
| prop: "poundagerate",
| label: "手续费比例(%)",
| defWidth: "160",
| placeholder: "请输入",
| type: "input"
| },
| {
| prop: "poundagefixed",
| label: "手续费固额(元)",
| defWidth: "160",
| placeholder: "请输入",
| type: "input"
| },
| {
| prop: "guarantyrate",
| label: "担保费比例(%)",
| defWidth: "160",
| placeholder: "请输入",
| type: "input"
| },
| {
| prop: "guarantyfixed",
| label: "担保费固额(元)",
| defWidth: "160",
| placeholder: "请输入",
| type: "input"
| },
| {
| prop: "platformrate",
| label: "平台服务费比例(%)",
| defWidth: "180",
| placeholder: "请输入",
| type: "input"
| },
| {
| prop: "platformfixed",
| label: "平台服务费固额(元)",
| defWidth: "180",
| placeholder: "请输入",
| type: "input"
| }
| // {
| // label: '操作',
| // name: 'operate',
| // colunmType: 'default',
| // defWidth: '100',
| // type: 'operate',
| // fixed: 'right'
| // }
| ];
| // 产品自定义还款方式-期数信息配置列表校验
| export const NPERCONFIGRULES = {
| paymentdaytype: [
| {
| required: true,
| message: "请选择还款日类型",
| trigger: "change"
| }
| ],
| isreturnrate: [
| {
| required: true,
| message: "请选择是否归还利息",
| trigger: "change"
| }
| ]
| };
|
|