UI รอบการลงเวลา

This commit is contained in:
setthawutttty 2023-10-26 16:42:47 +07:00
parent 49bbf92b4f
commit 748b8e7aa7
7 changed files with 586 additions and 4 deletions

View file

@ -3,6 +3,7 @@ const workMain = () => import("@/modules/09_leave/views/WorkingMain.vue")
const leaveMain = () => import("@/modules/09_leave/views/LeaveListMain.vue");
const reportMain = () => import("@/modules/09_leave/views/ReportMain.vue")
const leaveDetail = () => import("@/modules//09_leave/components/2_Leave/DetailLeave.vue")
const workingtime = () => import('@/modules/09_leave/components/3_WorkTime/MainPage.vue')
export default [
{
@ -45,5 +46,15 @@ export default [
Role: "coin",
},
},
{
path: "/workingtime",
name: "/working-time",
component: workingtime,
meta: {
Auth: true,
Key: [9],
Role: "coin",
},
},
]