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
import { resolve } from "core-js/fn/promise"
//主授信人信息
const mainCreditInfo = resolve => require(['@/views/product/views/CreditFlowPublic/mainCreditInfo/index.vue'], resolve)
const guarantor = resolve => require(['@/views/product/views/CreditFlowPublic/mainCreditGuarantor/index.vue'], resolve)
const mainCreditReconcile = resolve => require(['@/views/product/views/CreditFlowPublic/mainCreditReconcile/index.vue'], resolve)
//借款人基本信息
const mainCreditCustomerBasicInfo = resolve => require(['@/views/product/views/CreditFlowPublic/mainCreditCustomerBasicInfo/index.vue'], resolve)
//电子合同信息
const contract = resolve => require(['@/views/product/public/contract/index.vue'], resolve)
//影像资料信息
const imageData = resolve => require(['@/views/product/public/vLoanImageData/index.vue'], resolve)
//审批意见
const vLoanOpinion = resolve => require(['@/views/product/public/vLoanOpinion/index.vue'], resolve)
//历史审批意见
const historicalOpinions = resolve => require(['@/views/product/public/historicalOpinions/index.vue'], resolve)
//流程流转记录
const flowRecord = resolve => require(['@/views/product/public/flowRecord/index.vue'], resolve)
//还款计划
const mainCreditRepaymentPlan = resolve => require(['@/views/product/views/CreditFlowPublic/mainCreditRepaymentPlan/index.vue'], resolve)
//还款情况
const mainCreditRepaymentStatus = resolve => require(['@/views/product/views/CreditFlowPublic/mainCreditRepaymentStatus/index.vue'], resolve)
//履约情况
const mainCreditComplianceStatus = resolve => require(['@/views/product/views/CreditFlowPublic/mainCreditComplianceStatus/index.vue'], resolve)
 
const VloanPublic = [
  {
    //项目基本信息
    path: '/CreditFlowPublic/mainCreditInfo',
    component: mainCreditInfo,
  },
  {
    // 担保人
    path: '/CreditFlowPublic/mainCreditGuarantor',
    component: guarantor,
  },
  {
    // 和解信息
    path: '/CreditFlowPublic/mainCreditReconcile',
    component: mainCreditReconcile,
  },
  {
    // 电子合同信息
    path: '/CreditFlowPublic/vLoanContract',
    component: contract
  },
  {
    //还款计划
    path: '/CreditFlowPublic/mainCreditRepaymentPlan',
    component: mainCreditRepaymentPlan
  },
  {
    //还款情况
    path: '/CreditFlowPublic/mainCreditRepaymentStatus',
    component: mainCreditRepaymentStatus
  },
  {
    //履约情况
    path: '/CreditFlowPublic/mainCreditComplianceStatus',
    component: mainCreditComplianceStatus
  },
  {
    //借款人基本信息
    path: '/CreditFlowPublic/mainCreditCustomerBasicInfo',
    component: mainCreditCustomerBasicInfo
  },
  {
    //影像资料信息
    path: '/CreditFlowPublic/vLoanImageData',
    component: imageData,
  },
  {
    //审批意见
    path: '/CreditFlowPublic/vLoanOpinion',
    component: vLoanOpinion,
  },
  {
    //历史审批意见
    path: '/CreditFlowPublic/vLoanHistoricalOpinions',
    component: historicalOpinions,
  },
  {
    //流程流转记录
    path: '/CreditFlowPublic/vLoanFlowRecord',
    component: flowRecord,
  },
 
]
 
export default VloanPublic