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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
| /** 维度信息table 配置 */
| export const PRODIMENSIONLISTCOLUMN = [
| {
| prop: "mincreditterm",
| label: "最低贷款期限",
| width: "120px"
| },
| {
| prop: "maxcreditterm",
| label: "最高贷款期限",
| width: "120px"
| },
| {
| prop: "mincreditsum",
| label: "最低申请金额",
| width: "120px"
| },
| {
| prop: "maxcreditsum",
| label: "最高申请金额",
| width: "120px"
| },
| {
| prop: "changeflag",
| label: "变更标志",
| width: "auto"
| },
| {
| prop: "paymenttype",
| label: "还款方式",
| width: "200px"
| },
| {
| prop: "isdefault",
| label: "是否默认",
| width: "auto"
| },
| {
| prop: "isdelete",
| label: "配置状态",
| width: "auto"
| },
| {
| prop: "manualreviewtype",
| label: "人工审核类型",
| width: "170px"
| },
| {
| prop: "visainterviewtype",
| label: "面签类型",
| width: "120px"
| },
| {
| prop: "autopassvoucheraudit",
| label: "凭证审核类型",
| width: "120px"
| },
| {
| prop: "needuserreview",
| label: "客户申请复核",
| width: "150px"
| },
| {
| prop: "needareafinaudit",
| label: "地区金融审核",
| width: "150px"
| },
| {
| prop: "needvouncheraddition",
| label: "凭证补传",
| width: "auto"
| },
| {
| prop: "operationOption",
| width: "120px",
| label: "操作",
| align: "center",
| fixed: "right",
| type: "buttons"
| }
| ];
| // 维度定价配置
| export const DIMENSIONPRICINGSETTINGCOLUMN = [
| {
| prop: "paymentname",
| label: "还款方式",
| width: "200px"
| },
| {
| prop: "mincreditterm",
| label: "最低贷款期限",
| width: "120px"
| },
| {
| prop: "maxcreditterm",
| label: "最高贷款期限",
| width: "120px"
| },
| {
| prop: "changeflag",
| label: "变更标志",
| width: "auto"
| },
| {
| prop: "rateinteresttype",
| label: "利息计算方式",
| width: "130px"
| },
| {
| prop: "interestperiod",
| label: "计息周期",
| width: "auto"
| },
| {
| prop: "interesttype",
| label: "计息口径",
| width: "auto"
| },
| {
| prop: "rateunit",
| label: "利率单位",
| width: "auto"
| },
| {
| prop: "rate",
| label: "利率",
| width: "120px",
| type: "rate"
| },
| {
| prop: "eachratefixed",
| label: "每期利息固定金额",
| width: "160px"
| },
| {
| prop: "poundagetype",
| label: "手续费计算方式",
| width: "140px"
| },
| {
| prop: "poundagerate",
| label: "手续费率",
| type: "rate",
| width: "auto"
| },
| {
| prop: "minpoundage",
| label: "最低手续费",
| width: "120px"
| },
| {
| prop: "maxpoundage",
| label: "最高手续费",
| width: "120px"
| },
| {
| prop: "poundagefixed",
| label: "手续费固定金额",
| width: "160px"
| },
| {
| prop: "poundagecharge",
| label: "手续费收取方式",
| width: "160px"
| },
| {
| prop: "poundagemonth",
| label: "手续费平摊月数",
| width: "150px"
| },
| {
| prop: "platformtype",
| label: "平台服务费计算方式",
| width: "200px"
| },
| {
| prop: "platformrate",
| label: "平台服务费率",
| type: "rate",
| width: "120px"
| },
| {
| prop: "minplatform",
| label: "最低平台服务费",
| width: "120px"
| },
| {
| prop: "maxplatform",
| label: "最高平台服务费",
| width: "130px"
| },
| {
| prop: "platformfixed",
| label: "平台服务费固定金额",
| width: "160px"
| },
| {
| prop: "platformcharge",
| label: "平台服务费收取方式",
| width: "160px"
| },
| {
| prop: "platformmonth",
| label: "平台服务费平摊月数",
| width: "160px"
| },
| {
| prop: "guarantycalculation",
| label: "担保费计算方式",
| width: "160px"
| },
| {
| prop: "guarantyrate",
| label: "担保费费率",
| type: "rate",
| width: "120px"
| },
| {
| prop: "minguaranty",
| label: "最低担保费",
| width: "120px"
| },
| {
| prop: "maxguaranty",
| label: "最高担保费",
| width: "120px"
| },
| {
| prop: "guarantyfixed",
| label: "担保费固定金额",
| width: "140px"
| },
| {
| prop: "guarantycharge",
| label: "担保费收取方式",
| width: "140px"
| },
| {
| prop: "guarantymonth",
| label: "担保费平摊月数",
| width: "140px"
| },
| {
| prop: "isdelete",
| label: "定价状态",
| width: "auto"
| },
| {
| prop: "operationOption",
| width: "120px",
| label: "操作",
| align: "center",
| fixed: "right",
| type: "buttons"
| }
| ];
| // 提前还款方案配置
| export const PREPAYMENTSETTINGCOLUMN = [
| {
| prop: "paymentname",
| label: "还款方式",
| width: "200px"
| },
| {
| prop: "mincreditterm",
| label: "最低贷款期限",
| width: "120px"
| },
| {
| prop: "maxcreditterm",
| label: "最高贷款期限",
| width: "120px"
| },
| {
| prop: "changeflag",
| label: "变更标志",
| width: "auto"
| },
| {
| prop: "prepaymenttype",
| label: "提前还款费计算方式",
| width: "270px"
| },
| {
| prop: "prepaymentmonth",
| label: "提前还款费利息月数",
| width: "170px"
| },
| {
| prop: "prepaymentrate",
| label: "提前还款费费率",
| type: "rate",
| width: "130px"
| },
| {
| prop: "lockperiod",
| label: "封闭期",
| width: "130px"
| },
| {
| prop: "isdelete",
| label: "配置状态",
| width: "auto"
| },
| {
| prop: "operationOption",
| width: "120px",
| label: "操作",
| align: "center",
| fixed: "right",
| type: "buttons"
| }
| ];
| // 展期方案配置
| export const ROLLPLANSETTINGCOLUMN = [
| {
| prop: "paymenttype",
| label: "还款方式",
| width: "200px"
| },
| {
| prop: "mincreditterm",
| label: "最低贷款期限",
| width: "120px"
| },
| {
| prop: "maxcreditterm",
| label: "最高贷款期限",
| width: "120px"
| },
| {
| prop: "changeflag",
| label: "变更标志",
| width: "auto"
| },
| {
| prop: "rolloverlimitsum",
| label: "累计展期月数限制",
| width: "150px"
| },
| {
| prop: "rolloverlimit",
| label: "展期次数限制",
| width: "120px"
| },
| {
| prop: "rollovertype",
| label: "展期方式",
| width: "auto"
| },
| {
| prop: "rollovermonth",
| label: "展期月数",
| width: "auto"
| },
| {
| prop: "rollinteresttype",
| label: "展期费计算方式",
| width: "140px"
| },
| {
| prop: "rolloverrate",
| label: "展期费费率",
| type: "rate",
| width: "110px"
| },
| {
| prop: "rolloversum",
| label: "展期固定费用",
| width: "120px"
| },
| {
| prop: "isdelete",
| label: "配置状态",
| width: "auto"
| },
| {
| prop: "operationOption",
| width: "120px",
| label: "操作",
| align: "center",
| fixed: "right",
| type: "buttons"
| }
| ];
| // 贴息方案配置
| export const DISCOUNTPLANSETTINGCOLUMN = [
| {
| prop: "paymenttype",
| label: "还款方式",
| width: "200px"
| },
| {
| prop: "mincreditterm",
| label: "最低贷款期限",
| width: "120px"
| },
| {
| prop: "maxcreditterm",
| label: "最高贷款期限",
| width: "120px"
| },
| {
| prop: "minbusinesssum",
| label: "最低申请金额",
| width: "120px"
| },
| {
| prop: "maxbusinesssum",
| label: "最高申请金额",
| width: "120px"
| },
| {
| prop: "changeflag",
| label: "变更标志",
| width: "auto"
| },
| {
| prop: "isallpostedinterest",
| label: "贴利息类型",
| width: "120px"
| },
| {
| prop: "isallpostedpoundage",
| label: "贴手续费类型",
| width: "120px"
| },
| {
| prop: "isallpostedservice",
| label: "贴平台服务费类型",
| width: "160px"
| },
| {
| prop: "isallpostedguaranty",
| label: "贴担保费类型",
| width: "120px"
| },
| {
| prop: "discountterm",
| label: "贴息期数",
| width: "auto"
| },
| {
| prop: "discountguarantyterm",
| label: "贴担保费期数",
| width: "auto"
| },
|
| {
| prop: "discountrate",
| label: "贴息年利率",
| type: "rate",
| width: "120px"
| },
| {
| prop: "discountsum",
| label: "贴息固额",
| width: "auto"
| },
| {
| prop: "poundagerate",
| label: "贴手续费费率",
| type: "rate",
| width: "120px"
| },
| {
| prop: "poundagesum",
| label: "贴手续费固额",
| width: "120px"
| },
| {
| prop: "servicerate",
| label: "贴平台服务费月利率",
| type: "rate",
| width: "150px"
| },
| {
| prop: "discountserviceterm",
| label: "贴服务服务费期数",
| type: "rate",
| width: "150px"
| },
| {
| prop: "servicesum",
| label: "贴平台服务费固额",
| width: "150px"
| },
| {
| prop: "guarantyrate",
| label: "贴担保费费率",
| type: "rate",
| width: "120px"
| },
| {
| prop: "guarantysum",
| label: "贴担保费固额",
| width: "120px"
| },
| {
| prop: "isdelete",
| label: "配置状态",
| width: "auto"
| },
| {
| prop: "operationOption",
| width: "120px",
| label: "操作",
| align: "center",
| fixed: "right",
| type: "buttons"
| }
| ];
| // 维度激励配置
| export const INCENTIVESETTINGCOLUMN = [
| {
| prop: "incentiveobject",
| label: "激励对象",
| width: "auto"
| },
| {
| prop: "mincreditterm",
| label: "最低贷款期限",
| width: "120px"
| },
| {
| prop: "maxcreditterm",
| label: "最高贷款期限",
| width: "120px"
| },
| {
| prop: "minbusinesssum",
| label: "最低申请金额",
| width: "120px"
| },
| {
| prop: "maxbusinesssum",
| label: "最高申请金额",
| width: "120px"
| },
| {
| prop: "changeflag",
| label: "变更标志",
| width: "auto"
| },
| {
| prop: "isdelete",
| label: "配置状态",
| width: "auto"
| },
| {
| prop: "incentiveway",
| label: "激励费计算方式",
| width: "140px"
| },
| {
| prop: "incentiveratio",
| label: "激励费比例",
| width: "110px"
| },
| {
| prop: "incentivesum",
| label: "激励费金额",
| width: "110px"
| },
| {
| prop: "operationOption",
| width: "120px",
| label: "操作",
| align: "center",
| fixed: "right",
| type: "buttons"
| }
| ];
| // 征信查询配置
| export const CREDITQUERYSETTINGCOLUMN = [
| {
| prop: "mincreditterm",
| label: "最低贷款期限",
| width: "200px"
| },
| {
| prop: "maxcreditterm",
| label: "最高贷款期限",
| width: "120px"
| },
| {
| prop: "minapplyquota",
| label: "最低申请金额",
| width: "120px"
| },
| {
| prop: "maxapplyquota",
| label: "最高申请金额",
| width: "120px"
| },
| {
| prop: "changeflag",
| label: "变更标志",
| width: "auto"
| },
| {
| prop: "paymenttype",
| label: "还款方式",
| width: "180px"
| },
| {
| prop: "type",
| label: "配置类型",
| width: "auto"
| },
| {
| prop: "querymainborrowercredit",
| label: "借款人征信查询类型",
| width: "180px"
| },
| {
| prop: "querycoborrowercredit",
| label: "共借人征信查询类型",
| width: "180px"
| },
| {
| prop: "queryguaranteecredit",
| label: "担保人征信查询类型",
| width: "180px"
| },
| {
| prop: "isdefault",
| label: "是否默认",
| width: "auto"
| },
| {
| prop: "isdelete",
| label: "配置状态",
| width: "auto"
| },
| {
| prop: "operationOption",
| width: "120px",
| label: "操作",
| align: "center",
| fixed: "right",
| type: "buttons"
| }
| ];
| // 影像资料配置
| export const SCREENAGEDOCSETTINGCOLUMN = [
| {
| prop: "phaseName",
| label: "流程阶段名称",
| width: "140px"
| },
| {
| prop: "occurTypeCn",
| label: "业务类型",
| width: "140"
| },
| {
| prop: "docNo",
| label: "影像资料类型编码",
| width: "160px"
| },
| {
| prop: "docName",
| label: "影像资料类型名称",
| width: "160px"
| },
| {
| prop: "changeflag",
| label: "变更标志",
| width: "auto"
| },
| {
| prop: "isMandatory",
| label: "是否必填",
| width: "auto"
| },
| {
| prop: "theTemple",
| label: "影像示例/资料模版",
| width: "200"
| },
| {
| prop: "sortNo",
| label: "排序号",
| width: "auto"
| },
| {
| prop: "mobilityShowFlag",
| label: "移动运营端展示标志",
| width: "180px"
| },
| {
| prop: "marketingShowFlag",
| label: "移动客户端展示标志",
| width: "180px"
| },
| {
| prop: "isDelete",
| label: "配置状态",
| width: "auto"
| },
| {
| prop: "operationOption",
| width: "150px",
| label: "影像资料管理",
| align: "center",
| fixed: "right",
| type: "buttons"
| }
| ];
|
|