2023-07-03 17:16:37 +07:00
|
|
|
/**
|
2023-07-04 17:40:05 +07:00
|
|
|
* Router ระบบทะเบียนประวัติลูกจ้าง (registryEmployee)
|
2023-07-03 17:16:37 +07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
const Main = () => import("@/modules/08_registryEmployee/views/Main.vue");
|
2023-07-04 11:00:54 +07:00
|
|
|
// const Detail = () =>
|
|
|
|
|
// import("@/modules/08_registryEmployee/components/Profile.vue");
|
2023-07-03 17:16:37 +07:00
|
|
|
|
|
|
|
|
export default [
|
|
|
|
|
{
|
|
|
|
|
path: "/registryEmployee",
|
|
|
|
|
name: "registryEmployee",
|
|
|
|
|
component: Main,
|
|
|
|
|
meta: {
|
|
|
|
|
Auth: true,
|
|
|
|
|
Key: [9],
|
|
|
|
|
Role: "registryEmployee",
|
|
|
|
|
},
|
|
|
|
|
},
|
2023-07-04 11:00:54 +07:00
|
|
|
// {
|
|
|
|
|
// path: "/registryEmployee/:id",
|
|
|
|
|
// name: "registryEmployeeDetail",
|
|
|
|
|
// component: Detail,
|
|
|
|
|
// meta: {
|
|
|
|
|
// Auth: true,
|
|
|
|
|
// Key: [9],
|
|
|
|
|
// Role: "registryEmployeeDetails",
|
|
|
|
|
// },
|
|
|
|
|
// },
|
2023-07-03 17:16:37 +07:00
|
|
|
];
|