From 2c5450f66cf5b5da32dcef76dd59981c63d17aaf Mon Sep 17 00:00:00 2001 From: AnandaTon <125332905+anandaAiemvong@users.noreply.github.com> Date: Tue, 4 Jul 2023 11:00:54 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1?= =?UTF-8?q?=20route=20=E0=B9=83=E0=B8=99=20=E0=B8=AD=E0=B8=AD=E0=B8=81?= =?UTF-8?q?=E0=B8=84=E0=B8=B3=E0=B8=AA=E0=B8=B1=E0=B9=88=E0=B8=87=E0=B9=84?= =?UTF-8?q?=E0=B8=9B=E0=B8=AB=E0=B8=99=E0=B9=89=E0=B8=B2=20Detail=20?= =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1=20tap=20=E0=B8=82?= =?UTF-8?q?=E0=B9=89=E0=B8=B2=E0=B8=87=E0=B8=82=E0=B8=AD=E0=B8=87=E0=B8=97?= =?UTF-8?q?=E0=B8=B0=E0=B9=80=E0=B8=9A=E0=B8=B5=E0=B8=A2=E0=B8=99=E0=B8=9B?= =?UTF-8?q?=E0=B8=A3=E0=B8=B0=E0=B8=A7=E0=B8=B1=E0=B8=95=E0=B8=B4=E0=B8=A5?= =?UTF-8?q?=E0=B8=B9=E0=B8=81=E0=B8=88=E0=B9=89=E0=B8=B2=E0=B8=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/interface/request/main/main.ts | 4 ++-- .../OrderPlacement/MainOrderPlacement.vue | 4 ++-- src/modules/08_registryEmployee/router.ts | 24 +++++++++---------- 3 files changed, 16 insertions(+), 16 deletions(-) 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", + // }, + // }, ];