Merge branch 'nice_dev' into develop

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-11 13:18:17 +07:00
commit 799cd7ce08
3 changed files with 12 additions and 1 deletions

View file

@ -13,7 +13,10 @@ const tab = ref<string>("1");
</script>
<template>
<div class="row items-center q-mb-lg">
<div class="text-dark row items-center text-weight-bold" style="font-size: 20px">
<div
class="text-dark row items-center text-weight-bold"
style="font-size: 20px"
>
<q-icon name="mdi-account" class="q-mr-md" />
<span>อมลสวนต</span>
</div>

View file

@ -85,5 +85,6 @@ const splitterModel = ref<number>(12);
.hover-tab:hover {
background-color: #0793f1;
color: white !important;
opacity: 1 !important;
}
</style>

View file

@ -141,6 +141,13 @@ function onClickShowFilter() {
}
function onclickSearch() {
isShowFilter.value = true;
isShowBtnFilter.value = false;
if (isShowFilter.value) {
fetchType();
fetchLevel();
fetchYearOption();
}
formFilter.keyword = formFilter.keyword === null ? "" : formFilter.keyword;
fetchDataPerson();
}