fixing remove import file
This commit is contained in:
parent
e541bbb6d2
commit
ed683d0bb3
24 changed files with 201 additions and 831 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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 };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue