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
|