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
66
67
68
69
70
71
72
73
74
75
76
77
78
| /**
| * 产品管理详情路由
| */
|
| // 产品管理详情
| const ProductDetail = () => import('@views/productManagement/management/ProductDetail.vue')
| const ProFreePaymentDetail = () => import('@views/productManagement/management/proFreePaymentDetail.vue')
| const ProductDimensionDetail = () => import('@views/productManagement/management/components/productDimension/ProductDimensionDetail.vue')
| const FirstReadingDetail = () => import('@views/productManagement/firstReading/FirstReadingDetail.vue')
| const ImagePreview = () => import('@views/productManagement/components/ImagePreview.vue')
|
| const detailRouter = [
| {
| path: '/product/detail',
| component: ProductDetail,
| name: 'productDetail',
| meta: {
| keepAlive: false,
| title: '产品管理详情',
| }
| },
| {
| path: '/product-maintenance/detail',
| component: FirstReadingDetail,
| name: 'maintenanceDetail',
| meta: {
| keepAlive: false,
| title: '产品维护详情',
| }
| },
| {
| path: '/product-first-reading/detail',
| component: FirstReadingDetail,
| name: 'firstReadingDetail',
| meta: {
| keepAlive: false,
| title: '产品处理详情',
| }
| },
| {
| path: '/product-reexamine/detail',
| component: FirstReadingDetail,
| name: 'reexamineDetail',
| meta: {
| keepAlive: false,
| title: '产品处理详情',
| }
| },
| {
| path: '/product-payment/detail',
| component: ProFreePaymentDetail,
| name: 'proFreePaymentDetail',
| meta: {
| keepAlive: false,
| title: '产品自由还款方式详情',
| }
| },
| {
| path: '/product-manage/dimension/detail',
| component: ProductDimensionDetail,
| name: 'dimensionDetail',
| meta: {
| keepAlive: false,
| title: '维度定义',
| }
| },
| {
| path: '/file-view',
| component: ImagePreview,
| name: 'fileView',
| meta: {
| keepAlive: false,
| title: '图片预览',
| }
| },
| ]
|
| export default detailRouter
|
|