Merge branch 'develop' into devTee

This commit is contained in:
STW_TTTY\stwtt 2024-07-17 16:17:36 +07:00
commit 85998264af
16 changed files with 128 additions and 705 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>