From 813896c4004bcb8ab53feb762a2662f572e91ea1 Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Fri, 4 Apr 2025 17:32:38 +0700 Subject: [PATCH] =?UTF-8?q?fix=20=E0=B9=80=E0=B8=A5=E0=B8=82=E0=B8=97?= =?UTF-8?q?=E0=B8=B5=E0=B9=88=E0=B8=95=E0=B8=B3=E0=B9=81=E0=B8=AB=E0=B8=99?= =?UTF-8?q?=E0=B9=88=E0=B8=87=20'=20'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/detail/GovernmentInformation/05_ActingPos.vue | 2 +- .../components/detail/GovernmentInformation/07_Position.vue | 2 +- .../components/detail/Salary/01_PositionSalary.vue | 2 +- src/modules/04_registryPerson/views/edit/components/Table.vue | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPos.vue b/src/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPos.vue index 8e67f462d..0655dc420 100644 --- a/src/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPos.vue +++ b/src/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPos.vue @@ -487,7 +487,7 @@ onMounted(() => {
- {{ empType.value === "" ? "เลขที่ตำแหน่ง" : "ตำแหน่งเลขที่" }} + {{ empType === "" ? "เลขที่ตำแหน่ง" : "ตำแหน่งเลขที่" }}
{{ props.row.posNo ? props.row.posNo : "-" }} diff --git a/src/modules/04_registryPerson/components/detail/GovernmentInformation/07_Position.vue b/src/modules/04_registryPerson/components/detail/GovernmentInformation/07_Position.vue index fe7cf5b1c..da82bd917 100644 --- a/src/modules/04_registryPerson/components/detail/GovernmentInformation/07_Position.vue +++ b/src/modules/04_registryPerson/components/detail/GovernmentInformation/07_Position.vue @@ -112,7 +112,7 @@ const baseColumns = ref([ style: "font-size: 14px", format(val, row) { return row.posNoAbb && row.posNo - ? `${row.posNoAbb}${row.posNo}` + ? `${row.posNoAbb} ${row.posNo}` : row.posNo ? row.posNo : "-"; diff --git a/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalary.vue b/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalary.vue index b2c3f3628..adce3ddfb 100644 --- a/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalary.vue +++ b/src/modules/04_registryPerson/components/detail/Salary/01_PositionSalary.vue @@ -117,7 +117,7 @@ const baseColumns = ref([ style: "font-size: 14px", format(val, row) { return row.posNoAbb && row.posNo - ? `${row.posNoAbb}${row.posNo}` + ? `${row.posNoAbb} ${row.posNo}` : row.posNo ? row.posNo : "-"; diff --git a/src/modules/04_registryPerson/views/edit/components/Table.vue b/src/modules/04_registryPerson/views/edit/components/Table.vue index 8aed8cfec..a1890ecc7 100644 --- a/src/modules/04_registryPerson/views/edit/components/Table.vue +++ b/src/modules/04_registryPerson/views/edit/components/Table.vue @@ -100,7 +100,7 @@ const baseColumns = ref([ style: "font-size: 14px", format(val, row) { return row.posNoAbb && row.posNo - ? `${row.posNoAbb}${row.posNo}` + ? `${row.posNoAbb} ${row.posNo}` : row.posNo ? row.posNo : "-";