From 6630a3f80b34d6a8cba5842b27dc7295dcd3bb68 Mon Sep 17 00:00:00 2001
From: 13937891274 <kxc0822>
Date: 星期五, 13 五月 2022 10:08:59 +0800
Subject: [PATCH] 隐患排查清单
---
src/views/hiddenDangerTroubleshootingList/index.vue | 13 +++++++++++++
src/router/index.js | 37 +++++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+), 0 deletions(-)
diff --git a/src/router/index.js b/src/router/index.js
index d10d095..95d60ef 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -150,6 +150,43 @@
]
},
+ {
+ id: 2,
+ parentId: 0,
+ path: '/hiddenDangerTroubleshootingList',
+ component: Layout,
+ name: '隐患排查清单',
+ meta: { title: '隐患排查清单', icon: 'el-icon-security' },
+ hidden: true,
+ children: [
+ {
+ path: '/new',
+ // name: '自查清单_新增|修改',
+ component: () => import('@/views/safetyproduction/new'),
+ meta: { title: '自查清单', icon: 'el-icon-dash', noCache: true, affix: true },
+ hidden: true
+ },
+ {
+ //自查清单-去评审
+ path: '/gojudging',
+ component: () => import('@/views/safetyproduction/gojudging'),
+ hidden: true
+ },
+ {
+ //自查清单_评审
+ path: '/review',
+ component: () => import('@/views/safetyproduction/review'),
+ hidden: true
+ },
+ {
+ //自查清单_修改检查项
+ path: '/reviewXG',
+ component: () => import('@/views/safetyproduction/reviewXG'),
+ hidden: true
+ },
+
+ ]
+ },
/* {
id: 2,
parentId: 0,
diff --git a/src/views/hiddenDangerTroubleshootingList/index.vue b/src/views/hiddenDangerTroubleshootingList/index.vue
new file mode 100644
index 0000000..34cd1a0
--- /dev/null
+++ b/src/views/hiddenDangerTroubleshootingList/index.vue
@@ -0,0 +1,13 @@
+<template>
+
+</template>
+
+<script>
+export default {
+ name: "index"
+}
+</script>
+
+<style scoped>
+
+</style>
--
Gitblit v1.9.2