wgl 4 роки тому
батько
коміт
f982cd8d1b

+ 1 - 1
config/project.js

@@ -1 +1 @@
-exports.name = 'home'
+exports.name = 'business'

+ 24 - 2
src/projects/business/router/houseKeeper.js

@@ -9,7 +9,7 @@ const routesHouseKeeper = [
 				path: 'control',
 				component: () => import('../views/Layout.vue'),
 				children: [
-					//主页
+					//监管端主页
 					{
 						path: '',
 						name: 'HouseKeeperControl',
@@ -17,7 +17,7 @@ const routesHouseKeeper = [
 						meta: {
 							requireAuth: false,
 							role: [],
-							title: '物业及门卫主页',
+							title: '监管端主页',
 						}
 					},
 					//个人中心
@@ -124,6 +124,28 @@ const routesHouseKeeper = [
 									title: '职工测温',
 								}
 							},
+							//异常记录
+							{
+								path: 'abnormalRecord',
+								name: 'HouseKeeperControlHealthAbnormalRecord',
+								component: () => import('../views/HouseKeeper/Control/Health/AbnormalRecord.vue'),
+								meta: {
+									requireAuth: false,
+									role: [],
+									title: '异常记录',
+								}
+							},
+							//未测人员
+							{
+								path: 'noTemperatureRecord',
+								name: 'HouseKeeperControlHealthNoTemperatureRecord',
+								component: () => import('../views/HouseKeeper/Control/Health/NoTemperatureRecord.vue'),
+								meta: {
+									requireAuth: false,
+									role: [],
+									title: '未测人员',
+								}
+							},
 							//访客测温
 							{
 								path: 'guestTemperature',

+ 8 - 0
src/projects/business/views/HouseKeeper/Control/Health/AbnormalRecord.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
src/projects/business/views/HouseKeeper/Control/Health/NoTemperatureRecord.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>