he wei
2025-04-09 850af610b190eeabbd05eba3291fe359775676af
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: 'ComparativeAnalysis'
    },
    component: () => import('@/pages/compare')
  }, 
  // 数据管理
  {
    path: '/data',
    name: 'data',
    meta: {
      title: 'DataManagement'
    },
    component: () => import('@/pages/data')
  }, 
  // 仪表说明书
  {
    path: '/book',
    name: 'book',
    meta: {
      title: 'AnalyzerManual'
    },
    component: () => import('@/pages/book')
  }, 
  // 软件说明书
  {
    path: '/softwareBook',
    name: 'softwareBook',
    meta: {
      title: 'SoftwareManual'
    },
    component: () => import('@/pages/softwareBook')
  }, 
  // 操作视频
  {
    path: '/qrcode',
    name: 'qrcode',
    meta: {
      title: 'OperatingVideo'
    },
    component: () => import('@/pages/qrcode')
  }, 
  // 联系支持
  {
    path: '/contact',
    name: 'contact',
    meta: {
      title: 'ContactUs'
    },
    component: () => import('@/pages/contact')
  }, 
  {
    path: '/others',
    name: 'others',
    meta: {
      title: 'AboutFUGUANG'
    },
    component: () => import('@/pages/others')
  }, 
];