fixing remove import file

This commit is contained in:
Warunee Tamkoo 2024-11-21 16:58:49 +07:00
parent e541bbb6d2
commit ed683d0bb3
24 changed files with 201 additions and 831 deletions

View file

@ -492,9 +492,9 @@ onMounted(() => {
</div>
<div class="q-py-xs">
{{
`${
informaData.rank ? informaData.rank : informaData.prefix ?? ""
}${informaData.firstName} ${informaData.lastName}`
`${informaData.prefix ?? ""}${informaData.firstName} ${
informaData.lastName
}`
}}
</div>
<div class="q-py-xs">
@ -893,7 +893,6 @@ onMounted(() => {
map-options
:options="columnsHistory"
option-value="name"
style="min-width: 140px"
/>
</div>

View file

@ -9,6 +9,16 @@ interface FormPerson {
statusMarital?: string;
}
interface ChildrenFamily {
id: string;
childrenPrefixId: string | null;
childrenFirstName: string | null;
childrenLastName: string | null;
childrenCareer: string | null;
childrenLive: string | null;
childrenCitizenId: string | null;
}
interface FormChildren {
id: string;
createdAt: string;
@ -27,4 +37,4 @@ interface FormChildren {
profileEmployeeId: string | null;
}
export type { FormPerson, FormChildren };
export type { FormPerson, FormChildren, ChildrenFamily };