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;