From b3576ec6cf295d4d667761906afd99085e529daf Mon Sep 17 00:00:00 2001 From: "STW_TTTY\\stwtt" Date: Fri, 27 Sep 2024 10:28:48 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B8=95=E0=B8=B1?= =?UTF-8?q?=E0=B8=A7=E0=B9=81=E0=B8=9B=E0=B8=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/18_command/components/Step/3_ReceivedCopy.vue | 2 +- src/modules/18_command/interface/index/Main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/18_command/components/Step/3_ReceivedCopy.vue b/src/modules/18_command/components/Step/3_ReceivedCopy.vue index ba43820a6..1813186ee 100644 --- a/src/modules/18_command/components/Step/3_ReceivedCopy.vue +++ b/src/modules/18_command/components/Step/3_ReceivedCopy.vue @@ -119,7 +119,7 @@ async function fetchData() { const data = await res.data.result; rows.value = data.map((e: DataPerson) => ({ ...e, - fullName: `${e.prefix}${e.fristName} ${e.lastName}`, + fullName: `${e.prefix}${e.firstName} ${e.lastName}`, })); isChangeData.value = false; diff --git a/src/modules/18_command/interface/index/Main.ts b/src/modules/18_command/interface/index/Main.ts index 95e4927d3..a7132df2b 100644 --- a/src/modules/18_command/interface/index/Main.ts +++ b/src/modules/18_command/interface/index/Main.ts @@ -15,7 +15,7 @@ interface ItemTabs { interface DataPerson { fullName?: string; citizenId: string; - fristName: string; + firstName: string; id: string; lastName: string; org: string;