From ff99f0c0db217bbc34e026eb89442d80aa2ab4f6 Mon Sep 17 00:00:00 2001 From: AnandaTon Date: Wed, 13 Sep 2023 15:13:02 +0700 Subject: [PATCH 1/6] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=20flexbox?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/10_order/components/step/step01.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/10_order/components/step/step01.vue b/src/modules/10_order/components/step/step01.vue index 9d3cdf5dd..d6160ecd9 100644 --- a/src/modules/10_order/components/step/step01.vue +++ b/src/modules/10_order/components/step/step01.vue @@ -765,7 +765,7 @@ const getClass = (val: boolean) => { hide-bottom-space /> -
+
Date: Wed, 13 Sep 2023 15:51:37 +0700 Subject: [PATCH 2/6] =?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 3/6] =?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, +}); +