diff --git a/src/modules/04_registryNew/components/detail/PersonalInformation/01_Profile.vue b/src/modules/04_registryNew/components/detail/PersonalInformation/01_Profile.vue index c3a48511d..377681861 100644 --- a/src/modules/04_registryNew/components/detail/PersonalInformation/01_Profile.vue +++ b/src/modules/04_registryNew/components/detail/PersonalInformation/01_Profile.vue @@ -6,22 +6,16 @@ import http from "@/plugins/http"; import config from "@/app.config"; import { useCounterMixin } from "@/stores/mixin"; -import { useProfileDataStore } from "@/modules/04_registry/store"; -import type { InformationOps } from "@/modules/04_registry/interface/index/Main"; -import DialogHeader from "@/modules/04_registry/components/DialogHeader.vue"; -import type { - RequestItemsHistoryObject, - Columns, -} from "@/modules/04_registry/interface/request/Information"; -import type { - Information, - DataOption, -} from "@/modules/04_registry/components/profileType"; import HistoryTable from "@/components/TableHistory.vue"; +import DialogHeader from "@/components/DialogHeader.vue"; +import type { + InformationOps, + DataOption, +} from "@/modules/04_registryNew/interface/index/Main"; +import type { RequestItemsHistoryObject } from "@/modules/04_registryNew/interface/request/Information"; const $q = useQuasar(); const mixin = useCounterMixin(); -const profileStore = useProfileDataStore(); const { showLoader, hideLoader, date2Thai, messageError } = mixin; const modal = ref(false); @@ -366,7 +360,6 @@ async function fetchPerson() { .catch((e: any) => {}) .finally(() => { // hideLoader(); - profileStore.isLoad++; }); } @@ -478,7 +471,6 @@ function onSubmit() { myForm.value.validate().then(async (result: boolean) => { if (result) { // await saveData(); - console.log("Hello"); modal.value = false; } }); @@ -490,8 +482,6 @@ onMounted(async () => {