fix
This commit is contained in:
parent
a0e3e88e7e
commit
fced27b6f5
9 changed files with 201 additions and 35 deletions
|
|
@ -44,6 +44,8 @@ interface Information {
|
|||
statusId: string | null;
|
||||
knowledge: string | null;
|
||||
profileImg: string | null;
|
||||
prefixName: string | null;
|
||||
religionName: string | null;
|
||||
}
|
||||
|
||||
interface Family {
|
||||
|
|
@ -80,6 +82,7 @@ interface Occupation {
|
|||
|
||||
interface Contact {
|
||||
contactPrefixId: string | null;
|
||||
contactPrefixName: string | null;
|
||||
contactFirstname: string | null;
|
||||
contactLastname: string | null;
|
||||
contactRelations: string | null;
|
||||
|
|
@ -208,6 +211,8 @@ const defaultInformation = ref<Information>({
|
|||
provinceId: null,
|
||||
statusId: null,
|
||||
profileImg: null,
|
||||
religionName: null,
|
||||
prefixName: null,
|
||||
});
|
||||
|
||||
const defaultFamily = ref<Family>({
|
||||
|
|
@ -248,6 +253,7 @@ const defaultContact = ref<Contact>({
|
|||
contactLastname: null,
|
||||
contactRelations: null,
|
||||
contactTel: null,
|
||||
contactPrefixName: null,
|
||||
});
|
||||
|
||||
const defaultEducation = ref<Education>({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue