diff --git a/src/modules/04_registryNew/components/detail/PersonalInformation/04_Family.vue b/src/modules/04_registryNew/components/detail/PersonalInformation/04_Family.vue index 1c6623747..de10f5f84 100644 --- a/src/modules/04_registryNew/components/detail/PersonalInformation/04_Family.vue +++ b/src/modules/04_registryNew/components/detail/PersonalInformation/04_Family.vue @@ -6,7 +6,7 @@ import { QForm, useQuasar } from "quasar"; const mixin = useCounterMixin(); const $q = useQuasar(); -const { dialogConfirm, success, messageError, showLoader, hideLoader } = mixin; +const { dialogConfirm } = mixin; const formRef = ref(null); @@ -16,7 +16,7 @@ const fatherPrefixRef = ref(null); const fatherFirstNameRef = ref(null); const fatherLastNameRef = ref(null); const fatherData = reactive({ - isHaveInfo: "0", + isHaveInfo: 0, isDead: false, citizenId: null, prefix: null, @@ -26,7 +26,7 @@ const fatherData = reactive({ job: null, }); const motherData = reactive({ - isHaveInfo: "0", + isHaveInfo: 0, isDead: false, citizenId: null, prefix: null, @@ -36,7 +36,7 @@ const motherData = reactive({ job: null, }); const spouseData = reactive({ - isHave: "0", + isHave: 0, isDead: false, citizenId: null, prefix: null, @@ -69,7 +69,6 @@ function closeHistoryDialog() { } function validateForm() { - console.log("test"); onSubmit(); } @@ -105,8 +104,8 @@ function deleteChildren(items: any) {