From 9641d85403c7f7d1afdc2dad01ad5b8540ef005a Mon Sep 17 00:00:00 2001 From: oat_dev Date: Mon, 1 Apr 2024 14:43:46 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=97=E0=B8=B0=E0=B9=80=E0=B8=9A=E0=B8=B5?= =?UTF-8?q?=E0=B8=A2=E0=B8=99=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B8=A7=E0=B8=B1?= =?UTF-8?q?=E0=B8=95=E0=B8=B4:=20=E0=B9=81=E0=B8=81=E0=B9=89paging=20?= =?UTF-8?q?=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B8=A7=E0=B8=B1=E0=B8=95=E0=B8=B4?= =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B9=84=E0=B8=82=E0=B8=82=E0=B9=89?= =?UTF-8?q?=E0=B8=AD=E0=B8=A1=E0=B8=B9=E0=B8=A5=E0=B8=AA=E0=B9=88=E0=B8=A7?= =?UTF-8?q?=E0=B8=99=E0=B8=95=E0=B8=B1=E0=B8=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../detail/PersonalInformation/01_Profile.vue | 21 +++++++------------ 1 file changed, 8 insertions(+), 13 deletions(-) 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 () => { - -