diff --git a/src/modules/04_registryNew/components/detail/PersonalInformation/01_Profile.vue b/src/modules/04_registryNew/components/detail/PersonalInformation/01_Profile.vue index 850de1dfe..2af48b0bf 100644 --- a/src/modules/04_registryNew/components/detail/PersonalInformation/01_Profile.vue +++ b/src/modules/04_registryNew/components/detail/PersonalInformation/01_Profile.vue @@ -41,6 +41,11 @@ const id = ref(""); const age = ref(""); const formData = reactive(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 () => { - -