wgl 4 gadi atpakaļ
vecāks
revīzija
86833dc92c

+ 54 - 1
src/projects/business/router/houseKeeper.js

@@ -312,7 +312,60 @@ const routesHouseKeeper = [
 								}
 							},
 						],
-					}
+					},
+
+					//考勤
+					{
+						path: 'attendance',
+						component: () => import('../views/Layout.vue'),
+						children: [
+							//考勤记录列表
+							{
+								path: 'list',
+								name: 'HouseKeeperAdminAttendanceList',
+								component: () => import('../views/HouseKeeper/Admin/Attendance/List.vue'),
+								meta: {
+									requireAuth: false,
+									role: [],
+									title: '考勤记录列表',
+								}
+							},
+							//考勤记录测温详情
+							{
+								path: 'temperatureInfo',
+								name: 'HouseKeeperAdminAttendanceTemperatureInfo',
+								component: () => import('../views/HouseKeeper/Admin/Attendance/TemperatureInfo.vue'),
+								meta: {
+									requireAuth: false,
+									role: [],
+									title: '考勤记录测温详情',
+								}
+							},
+							//考勤记录补卡详情
+							{
+								path: 'supplementInfo',
+								name: 'HouseKeeperAdminAttendanceSupplementInfo',
+								component: () => import('../views/HouseKeeper/Admin/Attendance/SupplementInfo.vue'),
+								meta: {
+									requireAuth: false,
+									role: [],
+									title: '考勤记录补卡详情',
+								}
+							},
+							//考勤记录异地打卡详情
+							{
+								path: 'outsideInfo',
+								name: 'HouseKeeperAdminAttendanceOutsideInfo',
+								component: () => import('../views/HouseKeeper/Admin/Attendance/OutsideInfo.vue'),
+								meta: {
+									requireAuth: false,
+									role: [],
+									title: '考勤记录异地打卡详情',
+								}
+							},
+						]
+					},
+
 				]
 			},
 

+ 8 - 0
src/projects/business/views/HouseKeeper/Admin/Attendance/List.vue

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

+ 8 - 0
src/projects/business/views/HouseKeeper/Admin/Attendance/OutsideInfo.vue

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

+ 8 - 0
src/projects/business/views/HouseKeeper/Admin/Attendance/SupplementInfo.vue

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

+ 8 - 0
src/projects/business/views/HouseKeeper/Admin/Attendance/TemperatureInfo.vue

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