fix Table total toLocaleString

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-04-25 17:01:48 +07:00
parent aa1270cb64
commit 8a7089ae36
29 changed files with 34 additions and 31 deletions

View file

@ -538,7 +538,7 @@ onMounted(() => {
</div>
</template>
<template v-slot:pagination="scope">
งหมด {{ props.total }} รายการ
งหมด {{ props.total.toLocaleString() }} รายการ
<q-pagination
v-model="formFilter.page"
active-color="primary"

View file

@ -843,7 +843,7 @@ onMounted(async () => {
@update:pagination="updatePaginationIdp"
>
<template v-slot:pagination="scope">
งหมด {{ totalIdp }} รายการ
งหมด {{ totalIdp.toLocaleString() }} รายการ
<q-pagination
v-model="paginationIdp.page"
active-color="primary"

View file

@ -303,7 +303,7 @@ onMounted(() => {
</q-tr>
</template>
<template v-slot:pagination="scope">
งหมด {{ rowsTotal }} รายการ
งหมด {{ rowsTotal.toLocaleString() }} รายการ
<q-pagination
v-model="page"
active-color="primary"

View file

@ -420,7 +420,7 @@ onMounted(() => {
</q-tr>
</template>
<template v-slot:pagination="scope">
งหมด {{ rowsTotal }} รายการ
งหมด {{ rowsTotal.toLocaleString() }} รายการ
<q-pagination
v-model="page"
active-color="primary"