This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-11-19 11:55:43 +07:00
parent a0e3e88e7e
commit fced27b6f5
9 changed files with 201 additions and 35 deletions

View file

@ -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>({