/** * 综合交易系统路由配置 */ 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