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
| /**
| * 产品管理列表路由
| */
|
| // 产品管理列表
| const ProductList = () => import('@views/productManagement/management/ProductList.vue')
| const ProductFirstReadingList = () => import('@views/productManagement/firstReading/ProductFirstReadingList.vue')
| const ProductReexamineList = () => import('@views/productManagement/reexamine/ProductReexamineList.vue')
| const ProTaskAdjustment = () => import('@views/productManagement/management/ProTaskAdjustment.vue')
| const ProFreePayment = () => import('@views/productManagement/management/ProFreePayment.vue')
|
| const addRouter = [
| {
| path: '/product-manage/list',
| component: ProductList,
| name: 'productList',
| meta: {
| keepAlive: false,
| title: '产品管理列表',
| }
| },
| {
| path: '/product-first-reading/list',
| component: ProductFirstReadingList,
| name: 'productFirstReading',
| meta: {
| keepAlive: false,
| title: '产品初审列表',
| }
| },
| {
| path: '/product-reexamine/list',
| component: ProductReexamineList,
| name: 'productReexamine',
| meta: {
| keepAlive: false,
| title: '产品复审列表',
| }
| },
| {
| path: '/product-task-adjustment/list',
| component: ProTaskAdjustment,
| name: 'proTaskAdjustment',
| meta: {
| keepAlive: false,
| title: '产品任务调整列表',
| }
| },
| {
| path: '/product-free-payment/list',
| component: ProFreePayment,
| name: 'proFreePayment',
| meta: {
| keepAlive: false,
| title: '产品自定义还款方式',
| }
| },
| ]
|
| export default addRouter
|
|