|
|
@ -91,6 +91,54 @@ export const constantRoutes = [ |
|
|
|
} |
|
|
|
] |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: '/otherfinancialproductsreport', |
|
|
|
component: Layout, |
|
|
|
redirect: '/otherfinancialproductsreport', |
|
|
|
meta: { |
|
|
|
title: '其它融产品报备' |
|
|
|
}, |
|
|
|
children: [ |
|
|
|
{ |
|
|
|
path: '/otherfinancialproductsreport/otherfinancialproductsreport', |
|
|
|
component: () => import('@/views/otherfinancialproductsreport/otherfinancialproductsreport.vue'), |
|
|
|
name: 'OtherFinancialProductsReport', |
|
|
|
meta: { title: '其它融产品报备', noCache: true } |
|
|
|
} |
|
|
|
] |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: '/creditauditmanagement', |
|
|
|
component: Layout, |
|
|
|
redirect: '/creditauditmanagement', |
|
|
|
meta: { |
|
|
|
title: '贷前信用审核管理' |
|
|
|
}, |
|
|
|
children: [ |
|
|
|
{ |
|
|
|
path: '/creditauditmanagement/creditauditmanagement', |
|
|
|
component: () => import('@/views/creditauditmanagement/creditauditmanagement.vue'), |
|
|
|
name: 'CreditAuditManagement', |
|
|
|
meta: { title: '贷前信用审核管理', noCache: true } |
|
|
|
} |
|
|
|
] |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: '/financialclerkbycreditvetting', |
|
|
|
component: Layout, |
|
|
|
redirect: '/financialclerkbycreditvetting', |
|
|
|
meta: { |
|
|
|
title: '金融内勤信用审核管理' |
|
|
|
}, |
|
|
|
children: [ |
|
|
|
{ |
|
|
|
path: '/financialclerkbycreditvetting/financialclerkbycreditvetting', |
|
|
|
component: () => import('@/views/financialclerkbycreditvetting/financialclerkbycreditvetting.vue'), |
|
|
|
name: 'FinancialClerkByCreditVetting', |
|
|
|
meta: { title: '金融内勤信用审核管理', noCache: true } |
|
|
|
} |
|
|
|
] |
|
|
|
}, |
|
|
|
|
|
|
|
// 流程审批
|
|
|
|
// 金融产品政策报备--编辑
|
|
|
@ -120,6 +168,36 @@ export const constantRoutes = [ |
|
|
|
component: () => |
|
|
|
import('@/views/workFlow/jinrongzhengceFlow/financialpolicyreportingYiBanInfo.vue'), |
|
|
|
name: 'FinancialPolicyReportingYiBanInfo' |
|
|
|
}, |
|
|
|
|
|
|
|
// 流程审批
|
|
|
|
// 其它融产品报备--编辑
|
|
|
|
{ |
|
|
|
path: '/qitarongchanpinFlow/otherfinancialproductsreportEdit', |
|
|
|
component: () => |
|
|
|
import('@/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportEdit.vue'), |
|
|
|
name: 'OtherFinancialProductsReportEdit' |
|
|
|
}, |
|
|
|
// 其它融产品报备--待办
|
|
|
|
{ |
|
|
|
path: '/qitarongchanpinFlow/otherfinancialproductsreportDaiBan', |
|
|
|
component: () => |
|
|
|
import('@/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportDaiBan.vue'), |
|
|
|
name: 'OtherFinancialProductsReportDaiBan' |
|
|
|
}, |
|
|
|
// 其它融产品报备--待办--总经理跳转风控中心
|
|
|
|
{ |
|
|
|
path: '/qitarongchanpinFlow/otherfinancialproductsreportByDivisionOperate', |
|
|
|
component: () => |
|
|
|
import('@/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportByDivisionOperate.vue'), |
|
|
|
name: 'OtherFinancialProductsReportByDivisionOperate' |
|
|
|
}, |
|
|
|
// 其它融产品报备--已办
|
|
|
|
{ |
|
|
|
path: '/qitarongchanpinFlow/otherfinancialproductsreportYiBan', |
|
|
|
component: () => |
|
|
|
import('@/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportYiBan.vue'), |
|
|
|
name: 'OtherFinancialProductsReportYiBan' |
|
|
|
} |
|
|
|
// 404 page must be placed at the end !!!
|
|
|
|
// { path: '*', redirect: '/404', hidden: true }
|
|
|
|