การประเมินผล => fix bug load

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-07-16 14:45:51 +07:00
parent 2ebcb1961c
commit 07cb818045
3 changed files with 21 additions and 80 deletions

View file

@ -216,7 +216,7 @@ onMounted(() => {
]).finally(() => {
setTimeout(() => {
hideLoader();
}, 2000);
}, 2500);
});
});
</script>

View file

@ -198,8 +198,12 @@ function getData() {
}
onMounted(() => {
getData();
fetchEvaluation();
showLoader();
Promise.all([fetchEvaluation(), getData()]).finally(() => {
setTimeout(() => {
hideLoader();
}, 3000);
});
});
</script>