zhaoxiaoqiang1
2026-01-04 f1d30d03186c79ca2cbcfe60d6d2ce7d73fba97b
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
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
/**
 * 综合交易系统路由配置
 */
const comprehensiveTransactionRouter = [
  {
    path: '/',
    component: () => import('@comprehensive/LoanApply'),
  },
  {
    // 综合交易系统
    path: '/comprehensiveTransaction',
    component: () => import('@comprehensive/PageView'),
    children: [
      {
        name: 'loanApply',
        path: 'loanApply', // 贷款申请查询页面
        component: () => import('@comprehensive/LoanApply'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'commissionApply', // 返现佣金贷查询页面
        component: () => import('@comprehensive/CommissionApply'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'loanApplyCapital', // 贷款申请查询页面(资方)
        component: () => import('@comprehensive/LoanApplyCapital'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'comprehensive', // 借据查询页面
        name: 'comprehensive',
        component: () => import('@comprehensive/Debit'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'comprehensiveNewDebit', // 借据查询页面
        name: 'comprehensiveNewDebit',
        component: () => import('@comprehensive/NewDebit'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'loanMarginManagement', // 借款保证金管理
        name: 'loanMarginManagement',
        component: () => import('@comprehensive/LoanMarginManagement'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'loanMarginManagementDetail/:id',//保证金详情
        component: () => import('@comprehensive/LoanMarginManagementDetail'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
      {
        path: 'loanMarginManagementClaim',//保证金认领
        component: () => import('@comprehensive/LoanMarginManagementClaim'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
      {
        path: 'loanMarginManagementDeduction/:id',//保证金抵扣
        component: () => import('@comprehensive/LoanMarginManagementDeduction'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
      {
        path: 'loanMarginManagementRefund/:id',//保证金退款
        component: () => import('@comprehensive/LoanMarginManagementRefund'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
      {
        path: 'productMarginManagement', // 产品保证金管理
        name: 'productMarginManagement',
        component: () => import('@comprehensive/ProductMarginManagement'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'productMarginAdd',//产品保证金新增
        component: () => import('@comprehensive/ProductMarginAdd'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
      {
        path: 'productMarginClaim/:id',//产品保证金认领
        component: () => import('@comprehensive/ProductMarginClaim'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
      {
        path: 'productMarginRefund/:id',//产品保证金退款
        component: () => import('@comprehensive/ProductMarginRefund'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
      {
        path: 'productMarginManagementDetail/:id',//产品保证金详情/编辑
        component: () => import('@comprehensive/ProductMarginManagementDetail'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
      {
        path: 'overdueDataQuery',//逾期数据查询
        component: () => import('@comprehensive/OverdueDataQuery'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'overdueEnterPool',//逾期入池
        component: () => import('@comprehensive/OverdueEnterPool'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'overdueProductDetail/:id',//逾期管理详情
        component: () => import('@comprehensive/OverdueProductDetail'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
      {
        path: 'overdueEntrustExternal',//委外催收
        component: () => import('@comprehensive/OverdueEntrustExternal'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'overdueProsecution',//案件起诉
        component: () => import('@comprehensive/OverdueProsecution'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'overdueMediation',//诉前调解
        component: () => import('@comprehensive/OverdueMediation'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'overdueCourtFiling',//法院立案
        component: () => import('@comprehensive/OverdueCourtFiling'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'overdueJudgment',//法院判决
        component: () => import('@comprehensive/OverdueJudgment'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'overdueDebtCollectionPage', //催收事件
        component: () => import('@comprehensive/OverdueDebtCollectionPage'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'expirationReminder', // 到期提醒
        name: 'expirationReminder',
        component: () => import('@comprehensive/expirationReminder'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'OwnerLIst', // 沃土查询页面
        name: 'OwnerLIst',
        component: () => import('@comprehensive/OwnerLIst'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'PyCreditList', // 沃土查询页面
        name: 'PyCreditList',
        component: () => import('@comprehensive/PyCreditList'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'debit', // 借据查询页面
        component: () => import('@comprehensive/Debit'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'debitCapital', // 借据查询页面(资方)
        component: () => import('@comprehensive/DebitCapital'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'ClientsDetail/:id', // 贷款申请查询-详情页
        component: () => import('@comprehensive/ClientsDetail'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
      {
        path: 'loanDetail/:id', // 贷款申请查询-详情页
        component: () => import('@comprehensive/LoanDetail'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
      {
        path: 'edit',
        component: () => import('@comprehensive/Edit'),
        meta: {
          isDetail: true
        }
      },
      {
        path: 'preApprovalReview', // 预审批复核
        component: () => import('@comprehensive/PreApprovalReview'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'customerApplyReview', // 客户申请复核
        component: () => import('@comprehensive/CustomerApplyReview'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'areaPretial', // 地区预审
        component: () => import('@comprehensive/AreaPretial'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'faceSignature', // 贷款面签
        component: () => import('@comprehensive/FaceSignature'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'supplementUpload', // 凭证补全
        component: () => import('@comprehensive/SupplementUpload'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'mortgage', // 办理抵押
        component: () => import('@comprehensive/Mortgage'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'registerRedeemBuilding', // 登记赎楼信息
        component: () => import('@comprehensive/RegisterRedeemBuilding'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'registerAccreditation', // 登记办证信息
        component: () => import('@comprehensive/RegisterAccreditation'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'creditInput', // 征信录入
        component: () => import('@comprehensive/CreditInput'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'capitalApproval', // 资方审批
        component: () => import('@comprehensive/CapitalApproval'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'firstInstance', // 贷款初审
        component: () => import('@comprehensive/FirstInstance'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'loanReview', // 贷款复审
        component: () => import('@comprehensive/LoanReview'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'loanFinal', // 贷款终审
        component: () => import('@comprehensive/LoanFinal'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'certificateAudit', // 贷款凭证审核
        component: () => import('@comprehensive/CertificateAudit'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'buildingBusinessConfirmation', // 赎楼业务确认
        component: () => import('@comprehensive/BuildingBusinessConfirmation'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'mortgageReview', // 抵押审核
        component: () => import('@comprehensive/MortgageReview'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'advanceInterest', // 贷款预收息费
        component: () => import('@comprehensive/AdvanceInterest'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'financeAdvance', // 财务放款
        component: () => import('@comprehensive/FinanceAdvance'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'accountsReceivable', // 应收账款管理
        component: () => import('@comprehensive/AccountsReceivable'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'moneyBack', // 对公或赎楼回款
        component: () => import('@comprehensive/MoneyBack'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'buildingMoneyBack', // 对公或赎楼回款
        component: () => import('@comprehensive/BuildingMoneyBack'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'interestSettlement', // 赎楼贷息费结算
        component: () => import('@comprehensive/InterestSettlement'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'buildingRefundAudit', // 赎楼退款审核
        component: () => import('@comprehensive/BuildingRefundAudit'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'buildingRefundAccount', // 赎楼退款出账
        component: () => import('@comprehensive/BuildingRefundAccount'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'bidVoucherReturn', // 投标凭证回传
        component: () => import('@comprehensive/BidVoucherReturn'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'moneyBackVoucherReturn', // 回款凭证回传
        component: () => import('@comprehensive/MoneyBackVoucherReturn'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'creditBusiness', // 授信企业信息
        component: () => import('@comprehensive/CreditBusiness'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'entInfoApproval', // 企业信息修改
        component: () => import('@comprehensive/EntInfoApproval'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'riskApprovalApply', // 风控审批申请管理
        component: () => import('@comprehensive/RiskApprovalApply'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'loanTaskAdjustment', // 贷款任务调整
        component: () => import('@comprehensive/LoanTaskAdjustment'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'partnerTasksAdjustment', // 合作方任务调整
        component: () => import('@comprehensive/PartnerTasksAdjustment'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'adjustEnterpriseTask', // 企业任务调整
        component: () => import('@comprehensive/AdjustEnterpriseTask'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'ajustProjectTask', // 项目任务调整
        component: () => import('@comprehensive/AjustProjectTask'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'supplementLoanInfo', // 贷款申请资料补传
        component: () => import('@comprehensive/supplementLoanInfo'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'receivablesRegisterRevoke', // 应收账款融资登记撤销
        component: () => import('@comprehensive/ReceivablesRegisterRevoke'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'receivablesObligorPaySettle', // 应收账款债务人支付结算
        component: () => import('@comprehensive/ReceivablesObligorPaySettle'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'reFactoringApply', // 应收账款债务人支付结算
        component: () => import('@comprehensive/ReFactoringApply'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'reFactoringMoneyBack', // 应收账款债务人支付结算
        component: () => import('@comprehensive/ReFactoringMoneyBack'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'delaySupply', // 延期开标信息补录
        component: () => import('@comprehensive/DelaySupply'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'entAdvanceSupplement', // 企业垫资凭证补传
        component: () => import('@comprehensive/EntAdvanceSupplement'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'entAdvanceApproval', // 企业垫资凭证审核
        component: () => import('@comprehensive/EntAdvanceApproval'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'customerService', // 客服管理
        component: () => import('@comprehensive/CustomerService'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'customerCallHistory', // 历史呼叫记录
        component: () => import('@comprehensive/CustomerCallHistory'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'customerEdit', // 编辑客服
        component: () => import('@comprehensive/CustomerEdit')
      },
      {
        path: 'contractSend', // 贷后合同发送
        component: () => import('@comprehensive/ContractSend'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'projectContractList', // 项目合同
        component: () => import('@comprehensive/ProjectContractList'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: false
        }
      },
      {
        path: 'archivesList', // 档案列表
        component: () => import('@comprehensive/ArchivesList'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: false
        }
      },
      {
        path: 'editProjectContract', // 项目合同编辑
        component: () => import('@comprehensive/EditProjectContract'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
      {
        path: 'editArchives', // 业务档案编辑
        component: () => import('@comprehensive/EditArchives'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
      {
        path: 'commissionTransferFlowSum', // 查询开发商项目管理页面
        component: () => import('@comprehensive/CommissionTransferFlowSum'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'commissionDeveloper', // 查询开发商理管页面
        component: () => import('@comprehensive/CommissionDeveloper'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'commissionPorject', // 查询返现项目
        component: () => import('@comprehensive/CommissionPorject'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'commissionTransferFlow', // 查询开发商转账流水管理
        component: () => import('@comprehensive/CommissionTransferFlow'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'commissionTaxiSource', // 园区参数管理
        component: () => import('@comprehensive/CommissionTaxiSource'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'commissionApplyAll', // 园区应付费用
        component: () => import('@comprehensive/CommissionApplyAll'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'commissionApplyAllSy', // 园区应付费用
        component: () => import('@comprehensive/CommissionApplyAllSy'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'login', // 登陆
        component: () => import('@comprehensive/Login')
      },
      {
        path: 'test', // 测试页
        component: () => import('@comprehensive/Test')
      },
      {
        path: 'thirdPartyFlow', //  第三方流水查询
        component: () => import('@comprehensive/ThirdPartyFlow'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        name: 'hebaoApplyList',
        path: 'hebaoApplyList', //  订单信息查询
        component: () => import('@comprehensive/HebaoApplyList'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'hebaoApplyListDetail/:id', // 订单信息查询-详情页
        component: () => import('@comprehensive/HebaoApplyListDetail'),
        meta: {
          // 缓存路由,返回时不刷新页面
        }
      },
      {
        path: 'householdBagProject', //  返现佣金-项目管理
        component: () => import('@comprehensive/HouseholdBagProject'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'householdBagApplyList', //  返现佣金-客户签约管理
        component: () => import('@comprehensive/HouseholdBagApplyList'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'householdBagAgencyFlow', //  返现佣金-经纪公司转账管理
        component: () => import('@comprehensive/HouseholdBagAgencyFlow'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'ComplainList', // 查询客服投诉列表
        component: () => import('@comprehensive/ComplainList'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
 
      {
        path: 'complainListDetail/:id', // 查询客服投诉列表-详情页
        component: () => import('@comprehensive/ComplainListDetail'),
        meta: {
          // 缓存路由,返回时不刷新页面
          isDetail: true
        }
      },
 
      {
        path: 'tryAcctPaymentScheduleList', // 还款试算页面
        component: () => import('@comprehensive/TryAcctPaymentScheduleList.vue'),
        meta: {
          // 缓存路由,返回时不刷新页面
          keepAlive: true
        }
      },
      {
        path: 'riskReportExistAssetsDepartment',//存量资产部门汇总表
        component: () => import('@comprehensive/RiskReportExistAssetsDepartment'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'riskReportExistAssetsProduct',//存量资产产品汇总表
        component: () => import('@comprehensive/RiskReportExistAssetsProduct'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'riskReportAssetDetailList',//资产明细查询
        component: () => import('@comprehensive/RiskReportAssetDetailList'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'riskReportDepartmentOverdue',//团队逾期汇总
        component: () => import('@comprehensive/RiskReportDepartmentOverdue'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'riskReportCustManagerOverdue',//客户经理逾期汇总
        component: () => import('@comprehensive/RiskReportCustManagerOverdue'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'riskReportCustManagerAmtOverdue',//客户经理逾期回款汇总
        component: () => import('@comprehensive/RiskReportCustManagerAmtOverdue'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'riskReportOverdueAssetDetails',//存量资产逾期明细
        component: () => import('@comprehensive/RiskReportOverdueAssetDetails'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'supplyChainManagement',//供应链管理列表
        component: () => import('@comprehensive/SupplyChainManagement'),
        meta: {
          keepAlive: true
        }
      },
      {
        path: 'supplyChainDetail/:id',//供应链管理详情
        component: () => import('@comprehensive/SupplyChainDetail'),
        meta: {
          keepAlive: true
        }
      },
      
    ]
  },
  {
    path: '/photoViewer', // 影像资料信息
    component: () => import('@components/PhotoViewer')
  }
]
 
export default comprehensiveTransactionRouter