hrms-mgt/src/modules/04_registryPerson/router.ts
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 eeb92dfb5d Refactoring code module 04_registryPerson
2024-09-18 17:24:21 +07:00

63 lines
1.5 KiB
TypeScript

// ค้นหาข้อมูลทะเบียนประวัติ
const listPage = () => import("@/modules/04_registryPerson/views/listView.vue");
// ทะเบียนประวัติ
const detailPage = () =>
import("@/modules/04_registryPerson/views/detailView.vue");
// รายการคำร้องขอแก้ไขทะเบียนประวัติ
const requestEdit = () =>
import("@/modules/04_registryPerson/views/requestEditView.vue");
export default [
{
path: "/registry-officer",
name: "registryNew",
component: listPage,
meta: {
Auth: true,
Key: "SYS_REGISTRY_OFFICER",
Role: "STAFF",
},
},
{
path: "/registry-officer/:id",
name: "registryNewByid",
component: detailPage,
meta: {
Auth: true,
Key: "SYS_REGISTRY_OFFICER",
Role: "STAFF",
},
},
{
path: "/registry-employee",
name: "registryEmployeeList",
component: listPage,
meta: {
Auth: true,
Key: "SYS_REGISTRY_EMP",
Role: "STAFF",
},
},
{
path: "/registry-employee/:id",
name: "registryNewEmployeeByid",
component: detailPage,
meta: {
Auth: true,
Key: "SYS_REGISTRY_EMP",
Role: "STAFF",
},
},
{
path: "/registry-officer/request-edit",
name: "registryNewRequestEdit",
component: requestEdit,
meta: {
Auth: true,
Key: "SYS_REGISTRY_OFFICER",
Role: "STAFF",
},
},
];