张延森 vor 2 Jahren
Ursprung
Commit
e8a647be86

+ 3
- 0
src/views/hazard/ControlScheme/index.vue Datei anzeigen

@@ -0,0 +1,3 @@
1
+<template>
2
+  <div></div>
3
+</template>

+ 3
- 0
src/views/hazard/ControlScheme/view.vue Datei anzeigen

@@ -0,0 +1,3 @@
1
+<template>
2
+  <div></div>
3
+</template>

+ 3
- 0
src/views/hazard/FillingAndRegistration/edit.vue Datei anzeigen

@@ -0,0 +1,3 @@
1
+<template>
2
+  <div></div>
3
+</template>

+ 3
- 0
src/views/hazard/FillingAndRegistration/index.vue Datei anzeigen

@@ -0,0 +1,3 @@
1
+<template>
2
+  <div>备案登记</div>
3
+</template>

+ 3
- 0
src/views/hazard/MonitoringAndManagement/index.vue Datei anzeigen

@@ -0,0 +1,3 @@
1
+<template>
2
+  <div>监控管理</div>
3
+</template>

+ 0
- 0
src/views/hazard/OutsourcingResponsibility/edit.vue Datei anzeigen


+ 3
- 0
src/views/hazard/OutsourcingResponsibility/index.vue Datei anzeigen

@@ -0,0 +1,3 @@
1
+<template>
2
+  <div>包保责任制</div>
3
+</template>

+ 3
- 0
src/views/hazard/OutsourcingResponsibility/view.vue Datei anzeigen

@@ -0,0 +1,3 @@
1
+<template>
2
+  <div></div>
3
+</template>

+ 3
- 0
src/views/hazard/SafetyEvaluation/index.vue Datei anzeigen

@@ -0,0 +1,3 @@
1
+<template>
2
+  <div></div>
3
+</template>

+ 3
- 0
src/views/hazard/SafetyEvaluation/view.vue Datei anzeigen

@@ -0,0 +1,3 @@
1
+<template>
2
+  <div></div>
3
+</template>

+ 89
- 3
src/views/hazard/routes.js Datei anzeigen

@@ -3,11 +3,97 @@ export default [
3 3
   {
4 4
     path: '/riskclassification',
5 5
     name: 'riskclassification',
6
-    component: () => import(/* webpackChunkName: "riskclassification" */ './RiskClassification/index.vue')
6
+    component: () => import(/* webpackChunkName: "riskclassification" */ './RiskClassification/index.vue'),
7
+    meta: {
8
+      title: '辨识分级',
9
+    }
7 10
   },
8 11
   {
9 12
     path: '/riskclassification/edit',
10 13
     name: 'riskclassification.edit',
11
-    component: () => import(/* webpackChunkName: "riskclassificationedit" */ './RiskClassification/edit.vue')
12
-  }
14
+    component: () => import(/* webpackChunkName: "riskclassificationedit" */ './RiskClassification/edit.vue'),
15
+    meta: {
16
+      title: '辨识分级-新增',
17
+    }
18
+  },
19
+  {
20
+    path: '/safetyevaluation',
21
+    name: 'safetyevaluation',
22
+    component: () => import(/* webpackChunkName: "safetyevaluation" */ './SafetyEvaluation/index.vue'),
23
+    meta: {
24
+      title: '安全评估',
25
+    }
26
+  },
27
+  {
28
+    path: '/safetyevaluation/view',
29
+    name: 'safetyevaluation.view',
30
+    component: () => import(/* webpackChunkName: "safetyevaluationview" */ './SafetyEvaluation/view.vue'),
31
+    meta: {
32
+      title: '安全评估-查看',
33
+    }
34
+  },
35
+  {
36
+    path: '/outsourcingresponsibility',
37
+    name: 'outsourcingresponsibility',
38
+    component: () => import(/* webpackChunkName: "outsourcingresponsibility" */ './OutsourcingResponsibility/index.vue'),
39
+    meta: {
40
+      title: '包保责任制',
41
+    }
42
+  },
43
+  {
44
+    path: '/outsourcingresponsibility/edit',
45
+    name: 'outsourcingresponsibility.edit',
46
+    component: () => import(/* webpackChunkName: "outsourcingresponsibilityedit" */ './OutsourcingResponsibility/edit.vue'),
47
+    meta: {
48
+      title: '包保责任录入',
49
+    }
50
+  },
51
+  {
52
+    path: '/outsourcingresponsibility/view',
53
+    name: 'outsourcingresponsibility.view',
54
+    component: () => import(/* webpackChunkName: "outsourcingresponsibilityview" */ './OutsourcingResponsibility/view.vue'),
55
+    meta: {
56
+      title: '包保责任-查看',
57
+    }
58
+  },
59
+  {
60
+    path: '/fillingandregistration',
61
+    name: 'fillingandregistration',
62
+    component: () => import(/* webpackChunkName: "fillingandregistration" */ './FillingAndRegistration/index.vue'),
63
+    meta: {
64
+      title: '备案登记',
65
+    }
66
+  },
67
+  {
68
+    path: '/fillingandregistration/edit',
69
+    name: 'fillingandregistration.edit',
70
+    component: () => import(/* webpackChunkName: "fillingandregistrationedit" */ './FillingAndRegistration/edit.vue'),
71
+    meta: {
72
+      title: '备案登记-新增',
73
+    }
74
+  },
75
+  {
76
+    path: '/controlscheme',
77
+    name: 'controlscheme',
78
+    component: () => import(/* webpackChunkName: "controlscheme" */ './ControlScheme/index.vue'),
79
+    meta: {
80
+      title: '运行管控方案',
81
+    }
82
+  },
83
+  {
84
+    path: '/controlscheme/view',
85
+    name: 'controlscheme.view',
86
+    component: () => import(/* webpackChunkName: "controlschemeview" */ './ControlScheme/view.vue'),
87
+    meta: {
88
+      title: '运行管控方案-查看',
89
+    }
90
+  },
91
+  {
92
+    path: '/monitoringandmanagement',
93
+    name: 'monitoringandmanagement',
94
+    component: () => import(/* webpackChunkName: "monitoringandmanagement" */ './MonitoringAndManagement/index.vue'),
95
+    meta: {
96
+      title: '运行监控与管理',
97
+    }
98
+  },
13 99
 ]