From c43d1cf84d8cc184b989c59b657990a793b9fa98 Mon Sep 17 00:00:00 2001 From: waruneeta Date: Wed, 13 Sep 2023 15:51:37 +0700 Subject: [PATCH 1/2] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B9=84?= =?UTF-8?q?=E0=B8=82=20popup=20layout=20=E0=B8=88=E0=B8=B1=E0=B8=94?= =?UTF-8?q?=E0=B8=81=E0=B8=B2=E0=B8=A3=E0=B9=80=E0=B8=84=E0=B8=A3=E0=B8=B7?= =?UTF-8?q?=E0=B9=88=E0=B8=AD=E0=B8=87=E0=B8=A3=E0=B8=B2=E0=B8=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Dialogs/Information.vue | 25 +- src/components/Dialogs/PopupReason.vue | 58 +-- .../07_insignia/components/2_Manage/Tab1.vue | 418 ++++-------------- 3 files changed, 127 insertions(+), 374 deletions(-) diff --git a/src/components/Dialogs/Information.vue b/src/components/Dialogs/Information.vue index 05747f2de..28373e805 100644 --- a/src/components/Dialogs/Information.vue +++ b/src/components/Dialogs/Information.vue @@ -1,4 +1,6 @@ From cec54961d2503a2e6eb6e2a4fdadbebd9ba620db Mon Sep 17 00:00:00 2001 From: waruneeta Date: Wed, 13 Sep 2023 15:52:32 +0700 Subject: [PATCH 2/2] =?UTF-8?q?fix=20bug=20=E0=B8=9A=E0=B8=A3=E0=B8=A3?= =?UTF-8?q?=E0=B8=88=E0=B8=B8=E0=B9=80=E0=B8=A3=E0=B8=B7=E0=B9=88=E0=B8=AD?= =?UTF-8?q?=E0=B8=87=20pagination=20=E0=B9=81=E0=B8=A5=E0=B8=B0=E0=B8=8B?= =?UTF-8?q?=E0=B9=88=E0=B8=AD=E0=B8=99=E0=B9=80=E0=B8=A1=E0=B8=99=E0=B8=B9?= =?UTF-8?q?=E0=B9=80=E0=B8=A1=E0=B8=B7=E0=B9=88=E0=B8=AD=E0=B8=9A=E0=B8=A3?= =?UTF-8?q?=E0=B8=A3=E0=B8=88=E0=B8=B8=E0=B9=81=E0=B8=A5=E0=B9=89=E0=B8=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/PersonalList/Table.vue | 414 ++++-------------- 1 file changed, 94 insertions(+), 320 deletions(-) diff --git a/src/modules/05_placement/components/PersonalList/Table.vue b/src/modules/05_placement/components/PersonalList/Table.vue index 9f4dd9cbe..82e0b38b9 100644 --- a/src/modules/05_placement/components/PersonalList/Table.vue +++ b/src/modules/05_placement/components/PersonalList/Table.vue @@ -572,50 +572,31 @@ const paginationLabel = (start: number, end: number, total: number) => { if (paging.value == true) return " " + start + "-" + end + " ใน " + total; else return start + "-" + end + " ใน " + total; }; + +const pagination = ref({ + page: 1, + rowsPerPage: 10, +}); +