he wei
2022-11-13 b4816f6294646157b50bb49f1d19eaf306e0ac8c
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
79
80
export default [{
    path: '/',
    redirect: '/empty'
  },
  {
    path: '/result/:filename',
    name: 'result',
    meta: {},
    component: () => import('@/pages/xmlResult')
  },
  // 空白页面
  {
    path: '/empty',
    name: 'empty',
    meta: {},
    component: () => import('@/pages/empty')
  }, 
  // 对比分析
  {
    path: '/compare',
    name: 'compare',
    meta: {
      title: '对比分析'
    },
    component: () => import('@/pages/compare')
  }, 
  // 数据管理
  {
    path: '/data',
    name: 'data',
    meta: {
      title: '数据管理'
    },
    component: () => import('@/pages/data')
  }, 
  // 仪表说明书
  {
    path: '/book',
    name: 'book',
    meta: {
      title: '仪表说明书'
    },
    component: () => import('@/pages/book')
  }, 
  // 软件说明书
  {
    path: '/softwareBook',
    name: 'softwareBook',
    meta: {
      title: '软件说明书'
    },
    component: () => import('@/pages/softwareBook')
  }, 
  // 操作视频
  {
    path: '/qrcode',
    name: 'qrcode',
    meta: {
      title: '操作视频'
    },
    component: () => import('@/pages/qrcode')
  }, 
  // 联系支持
  {
    path: '/contact',
    name: 'contact',
    meta: {
      title: '联系我们'
    },
    component: () => import('@/pages/contact')
  }, 
  {
    path: '/others',
    name: 'others',
    meta: {
      title: '关于福光'
    },
    component: () => import('@/pages/others')
  }, 
];