/** * 综合交易系统路由配置 */ const comprehensiveTransactionRouter = [ { // 综合交易系统 path: '/comprehensiveTransaction', component: () => import('@comprehensive/PageView'), children: [ { path: 'loanApply', // 贷款申请查询页面 component: () => import('@comprehensive/LoanApply'), meta: { // 缓存路由,返回时不刷新页面 keepAlive: true } }, { path: 'loanDetail/:id', // 贷款申请查询-详情页 component: () => import('@comprehensive/LoanDetail'), meta: { // 缓存路由,返回时不刷新页面 isDetail: true } }, { path: 'edit', component: () => import('@comprehensive/Edit'), meta: { isDetail: true } }, { path: 'customerApplyReview', // 客户申请复核 component: () => import('@comprehensive/CustomerApplyReview'), meta: { // 缓存路由,返回时不刷新页面 keepAlive: true } }, { path: 'capitalApproval', // 资方审批 component: () => import('@comprehensive/CapitalApproval'), meta: { // 缓存路由,返回时不刷新页面 keepAlive: true } }, { path: 'login', // 登陆 component: () => import('@comprehensive/Login') }, { path: 'test', // 测试页 component: () => import('@comprehensive/Test') }, ] }, { path: '/photoViewer', // 影像资料信息 component: () => import('@components/PhotoViewer') } ] export default comprehensiveTransactionRouter