From 75997a7ffcdd04a73e38233d60bda312c319e111 Mon Sep 17 00:00:00 2001 From: "STW_TTTY\\stwtt" Date: Tue, 24 Sep 2024 11:19:58 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=20=E0=B8=9F?= =?UTF-8?q?=E0=B8=AD=E0=B8=A3=E0=B9=8C=E0=B8=A1=20=E0=B8=84=E0=B9=89?= =?UTF-8?q?=E0=B8=99=E0=B8=AB=E0=B8=B2=E0=B8=8A=E0=B8=B7=E0=B9=88=E0=B8=AD?= =?UTF-8?q?=E0=B9=84=E0=B8=A1=E0=B9=88=E0=B9=80=E0=B8=88=E0=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/05_placement/views/03_receiveMain.vue | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/modules/05_placement/views/03_receiveMain.vue b/src/modules/05_placement/views/03_receiveMain.vue index 8e772b175..973754596 100644 --- a/src/modules/05_placement/views/03_receiveMain.vue +++ b/src/modules/05_placement/views/03_receiveMain.vue @@ -95,6 +95,9 @@ const columns = ref([ style: "font-size: 14px", sort: (a: string, b: string) => a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), + format(val, row) { + return `${row.prefix ?? ""}${row.firstName ?? ""} ${row.lastName ?? ""}`; + }, }, { name: "organizationName", @@ -518,15 +521,6 @@ onMounted(() => {
{{ props.rowIndex + 1 }}
-
- {{ - props.row.firstName - ? `${props.row.prefix ?? ""}${ - props.row.firstName ?? "" - } ${props.row.lastName ?? ""}` - : "-" - }} -
{{ props.row.dateOfBirth