Ui หน้า Editdetail ข้อมูลทะเบียนประวัติลูกจ้างชั่วคราว

This commit is contained in:
AnandaTon 2023-07-27 14:15:30 +07:00
parent 6a048c23d9
commit 7af08524e0
20 changed files with 20378 additions and 0 deletions

View file

@ -11,6 +11,9 @@ const Main = defineAsyncComponent(
const Detail = defineAsyncComponent(
() => import("@/modules/08_registryEmployee/views/Detail.vue")
);
const EditDetail = defineAsyncComponent(
() => import("@/modules/08_registryEmployee/views/EditDetail.vue")
);
export default [
{
@ -43,4 +46,14 @@ export default [
Role: "registryEmployee",
},
},
{
path: "/registryEmployee/Edit/:Id",
name: "registryEmployeeEdit",
component: EditDetail,
meta: {
Auth: true,
Key: [11],
Role: "registryEmployee",
},
},
];