ทะเบียนประวัติลูกจ้าง
This commit is contained in:
parent
ec257e0ddf
commit
c8f682fb38
4 changed files with 121 additions and 0 deletions
30
src/modules/08_registryEmployee/router.ts
Normal file
30
src/modules/08_registryEmployee/router.ts
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
/**
|
||||
* Router ระบบทะเบียนประวัติ}6d0hk' (Registry)
|
||||
*/
|
||||
|
||||
const Main = () => import("@/modules/08_registryEmployee/views/Main.vue");
|
||||
const Detail = () =>
|
||||
import("@/modules/08_registryEmployee/components/Profile.vue");
|
||||
|
||||
export default [
|
||||
{
|
||||
path: "/registryEmployee",
|
||||
name: "registryEmployee",
|
||||
component: Main,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [9],
|
||||
Role: "registryEmployee",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/registryEmployee/:id",
|
||||
name: "registryEmployeeDetail",
|
||||
component: Detail,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [9],
|
||||
Role: "registryEmployee",
|
||||
},
|
||||
},
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue