diff --git a/src/interface/request/main/main.ts b/src/interface/request/main/main.ts index faf46e4d3..f3f39af82 100644 --- a/src/interface/request/main/main.ts +++ b/src/interface/request/main/main.ts @@ -213,8 +213,8 @@ const menuList = readonly([ }, { key: 9, - icon: "mdi-medal-outline", - activeIcon: "mdi-medal", + icon: "o_contact_page", + activeIcon: "contact_page", label: "ทะเบียนประวัติลูกจ้าง", path: "registryEmployee", role: "registryEmployee", diff --git a/src/modules/05_placement/components/OrderPlacement/MainOrderPlacement.vue b/src/modules/05_placement/components/OrderPlacement/MainOrderPlacement.vue index 09bc164d9..d8baff11e 100644 --- a/src/modules/05_placement/components/OrderPlacement/MainOrderPlacement.vue +++ b/src/modules/05_placement/components/OrderPlacement/MainOrderPlacement.vue @@ -527,8 +527,8 @@ const OriginalDataFetch = async () => { // ดูรายการหน้าต่อไป const redirectToPage = (id?: number) => { - // router.push({ name: 'placementDetail'}); - // router.push(`/placement/order/detail`); + router.push({ name: "placementDetail" }); + router.push(`/placement/order/detail`); }; const clickDelete = (id: string) => { diff --git a/src/modules/08_registryEmployee/router.ts b/src/modules/08_registryEmployee/router.ts index f65e37a06..c982d3cf5 100644 --- a/src/modules/08_registryEmployee/router.ts +++ b/src/modules/08_registryEmployee/router.ts @@ -3,8 +3,8 @@ */ const Main = () => import("@/modules/08_registryEmployee/views/Main.vue"); -const Detail = () => - import("@/modules/08_registryEmployee/components/Profile.vue"); +// const Detail = () => +// import("@/modules/08_registryEmployee/components/Profile.vue"); export default [ { @@ -17,14 +17,14 @@ export default [ Role: "registryEmployee", }, }, - { - path: "/registryEmployee/:id", - name: "registryEmployeeDetail", - component: Detail, - meta: { - Auth: true, - Key: [9], - Role: "registryEmployee", - }, - }, + // { + // path: "/registryEmployee/:id", + // name: "registryEmployeeDetail", + // component: Detail, + // meta: { + // Auth: true, + // Key: [9], + // Role: "registryEmployeeDetails", + // }, + // }, ];