Explorar o código

客服节假日排班页面

@dongkboy hai 1 ano
pai
achega
2da8a5cc55
Modificáronse 2 ficheiros con 30 adicións e 0 borrados
  1. 13 0
      src/router/modules/personnel.ts
  2. 17 0
      src/views/personnel/holidaySchedule.vue

+ 13 - 0
src/router/modules/personnel.ts

@@ -76,6 +76,19 @@ const routes: RouteRecordRaw = {
       meta: {
         title: '微信客服',
       },
+      children:[
+        {
+          path: 'holidaySchedule',
+          name: 'personnelHolidaySchedule',
+          component: () => import('@/views/personnel/holidaySchedule.vue'),
+          meta: {
+            title: '节假日排班',
+            menu:false,
+            activeMenu: '/personnel/holidaySchedule',
+          },
+        },
+
+      ]
     },
   ],
 }

+ 17 - 0
src/views/personnel/holidaySchedule.vue

@@ -0,0 +1,17 @@
+<!-- 模板区域 -->
+<template>
+<div>
+<PageMain>
+</PageMain>
+</div>
+</template>
+
+<!-- 行为区域 -->
+<script lang='ts' setup>
+import { ref,reactive } from 'vue'
+import api from '@/api'
+</script>
+<!-- 样式区域 -->
+<style lang='scss' scoped>
+
+</style>