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