ทะเบียนประวัติ: แก้paging ประวัติแก้ไขข้อมูลส่วนตัว

This commit is contained in:
oat_dev 2024-04-01 14:43:46 +07:00
parent c8bc52a9fc
commit 9641d85403

View file

@ -41,6 +41,11 @@ const id = ref<string>("");
const age = ref<string | null>("");
const formData = reactive<RequestObject>(store.defaultProfile);
const pagination = ref({
page: 1,
rowsPerPage: 10,
});
const dataLabel = {
citizenId: "เลขบัตรประจำตัวประชาชน",
name: "ชื่อ - สกุล",
@ -812,7 +817,9 @@ onMounted(async () => {
:columns="columnsHistory"
:rows="rowsHistory"
:paging="true"
:rows-per-page-options="[10, 25, 50, 100]"
class="custom-header-table"
v-model:pagination="pagination"
:rows-per-page-options="[20, 50, 100]"
:visible-columns="visibleColumnsHistory"
:filter="filterHistory"
>
@ -833,18 +840,6 @@ onMounted(async () => {
</q-td>
</q-tr>
</template>
<template v-slot:pagination="scope">
<q-pagination
v-model="currentPage"
active-color="primary"
color="dark"
:max="Number(maxPage)"
size="sm"
boundary-links
direction-links
></q-pagination>
</template>
</d-table>
</q-card-section>
</q-card>