ทะเบียนประวัติ ==> ปรับ load

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-08-27 10:37:57 +07:00
parent bc29de9f1c
commit 07b50dca80
4 changed files with 42 additions and 26 deletions

View file

@ -423,10 +423,17 @@ watch(
);
onMounted(() => {
getData();
const promises = [];
// Add the getData() promise
promises.push(getData());
// Check the condition and add fetchPerson() if needed
if (store.Ops && store.Ops.prefixOps && store.Ops.prefixOps.length === 0) {
fetchPerson();
promises.push(fetchPerson());
}
Promise.all(promises);
});
</script>

View file

@ -172,9 +172,9 @@ const fromData = reactive({
/**
* function fetch อมลบดา
*/
function fetchDataFather() {
async function fetchDataFather() {
showLoader();
http
await http
.get(
config.API.profileFamily(empType.value, "father") + `/${profileId.value}`
)
@ -201,9 +201,9 @@ function fetchDataFather() {
/**
* function fetch อมลมารดา
*/
function fetchDataMother() {
async function fetchDataMother() {
showLoader();
http
await http
.get(
config.API.profileFamily(empType.value, "mother") + `/${profileId.value}`
)
@ -229,9 +229,9 @@ function fetchDataMother() {
/**
* function fetch อมลคสมรส
*/
function fetchDataCouple() {
async function fetchDataCouple() {
showLoader();
http
await http
.get(
config.API.profileFamily(empType.value, "couple") + `/${profileId.value}`
)
@ -259,9 +259,9 @@ function fetchDataCouple() {
/**
* function fetch อมลบตร
*/
function fetchDataChildren() {
async function fetchDataChildren() {
showLoader();
http
await http
.get(
config.API.profileFamily(empType.value, "children") +
`/${profileId.value}`
@ -412,7 +412,7 @@ function onOpenDialogHistory(type: string, id: string = "") {
* function fetch อมลความสมพนธ
*/
function fetchDataRelationship() {
showLoader();
// showLoader();
http
.get(config.API.orgRelationship)
.then((res) => {
@ -426,7 +426,9 @@ function fetchDataRelationship() {
messageError($q, err);
})
.finally(() => {
hideLoader();
// setTimeout(() => {
// hideLoader();
// }, 2000);
});
}
@ -472,14 +474,17 @@ function fetchHistory(id: string, type: string) {
});
}
onMounted(() => {
Promise.all([
onMounted(async () => {
showLoader();
await Promise.all([
fetchDataFather(),
fetchDataMother(),
fetchDataCouple(),
fetchDataChildren(),
fetchDataRelationship(),
]);
]).then(() => {
hideLoader();
});
});
</script>

View file

@ -173,9 +173,13 @@ export const useProfileDataStore = defineStore("profile", () => {
Ops.value.religionOps = optionreligions;
OpsFilter.value.religionOps = optionreligions;
})
.catch((e: any) => {})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
setTimeout(() => {
hideLoader();
}, 2500);
});
};

View file

@ -199,7 +199,7 @@ function uploadFileURL(uploadUrl: string, file: any) {
}
function fetchProfile(id: string) {
showLoader();
// showLoader();
http
.get(config.API.fileByFile("ทะเบียนประวัติ", "โปรไฟล์", id, fileName.value))
.then(async (res) => {
@ -208,9 +208,9 @@ function fetchProfile(id: string) {
.catch(() => {
profilePicture.value = avatar;
})
.finally(() => {
hideLoader();
});
// .finally(() => {
// hideLoader();
// });
}
const reasonStatus = ref<boolean>(false);
@ -254,7 +254,7 @@ async function fetchDataPersonal() {
showLoader();
await http
.get(config.API.registryNewByProfileId(profileId.value, empType.value))
.then((res) => {
.then(async (res) => {
formDetail.value = res.data.result;
if (res.data.result.leaveReason) {
@ -275,7 +275,7 @@ async function fetchDataPersonal() {
fileName.value = res.data.result.avatarName;
if (formDetail.value?.avatarName) {
fetchProfile(profileId.value);
await fetchProfile(profileId.value);
} else {
profilePicture.value = avatar;
}
@ -291,13 +291,13 @@ async function fetchDataPersonal() {
}
})
.finally(() => {
hideLoader();
setTimeout(() => {
hideLoader();
}, 2800);
});
}
function onClickDownloadKp7(type: string) {
console.log(empType.value);
showLoader();
const url =
type === "FULL"