vothin 2 лет назад
Родитель
Сommit
d4f73061d6
2 измененных файлов с 27 добавлено и 0 удалено
  1. 13 0
      src/router/index.js
  2. 14 0
      src/views/nfc-interaction/index.vue

+ 13 - 0
src/router/index.js

@@ -192,6 +192,19 @@ export const partRoutes = [
     ]
   },
   {
+    path: '/nfc-interaction',
+    component: Layout,
+    redirect: '/nfc-interaction',
+    children: [
+      {
+        path: 'nfcInteractionList',
+        component: () => import('@/views/nfc-interaction/index'),
+        name: 'nfcInteractionList',
+        meta: { title: '员工打卡日历', icon: 'peoples', noCache: true }
+      }
+    ]
+  },
+  {
     path: '/entrace-guard',
     component: Layout,
     redirect: '/entrace-guard/users',

+ 14 - 0
src/views/nfc-interaction/index.vue

@@ -0,0 +1,14 @@
+<template>
+  <el-calendar v-model="value">
+  </el-calendar>
+</template>
+
+<script>
+export default {
+  name: "index"
+}
+</script>
+
+<style scoped>
+
+</style>