updated ux registry filter

This commit is contained in:
Warunee Tamkoo 2024-09-04 12:21:51 +07:00
parent b3fbddfefb
commit 2531a90e57
4 changed files with 52 additions and 13 deletions

View file

@ -35,7 +35,7 @@ const props = defineProps({
rows: { type: Array },
fetchData: { type: Function },
fetchType: { type: Function },
total: { type: Number },
total: { type: Number, default: 0 },
});
/**
@ -239,6 +239,9 @@ watch(
>
</div>
<q-space />
<div v-if="total > 0" class="text-teal">
พบขอมลทงหมด {{ total.toLocaleString() }} รายการ
</div>
<q-select
v-if="store.mode === 'table'"
v-model="visibleColumns"