From 872f32c0315755190044d4a2cde9ede70d0a50d9 Mon Sep 17 00:00:00 2001 From: Kittapath Date: Mon, 16 Oct 2023 16:27:48 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B8=84=E0=B8=B3?= =?UTF-8?q?=E0=B9=83=E0=B8=99=20page=20=E0=B8=88=E0=B8=B2=E0=B8=81=20?= =?UTF-8?q?=E0=B9=83=E0=B8=99=E0=B9=80=E0=B8=9B=E0=B9=87=E0=B8=99=E0=B8=96?= =?UTF-8?q?=E0=B8=B6=E0=B8=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Table.vue | 2 +- src/components/TableView.vue | 2 +- src/modules/02_organizational/components/TableReport.vue | 2 +- src/modules/03_recruiting/components/TableCandidate.vue | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Table.vue b/src/components/Table.vue index cc4dc9d08..68a80f184 100644 --- a/src/components/Table.vue +++ b/src/components/Table.vue @@ -50,7 +50,7 @@ const pagination = ref({ const paginationLabel = (start: string, end: string, total: string) => { if (props.paging == true) - return " " + start + " ใน " + end + " จากจำนวน " + total + " รายการ"; + return " " + start + " ถึง " + end + " จากจำนวน " + total + " รายการ"; else return start + "-" + end + " ใน " + total; }; diff --git a/src/components/TableView.vue b/src/components/TableView.vue index cedd2a9e9..5db35ea64 100644 --- a/src/components/TableView.vue +++ b/src/components/TableView.vue @@ -353,7 +353,7 @@ const pagesNumber = computed(() => { const paginationLabel = (start: string, end: string, total: string) => { if (props.paging == true) - return " " + start + " ใน " + end + " จากจำนวน " + total + " รายการ"; + return " " + start + " ถึง " + end + " จากจำนวน " + total + " รายการ"; else return start + "-" + end + " ใน " + total; }; diff --git a/src/modules/02_organizational/components/TableReport.vue b/src/modules/02_organizational/components/TableReport.vue index 4d1281c68..69adab6ea 100644 --- a/src/modules/02_organizational/components/TableReport.vue +++ b/src/modules/02_organizational/components/TableReport.vue @@ -173,7 +173,7 @@ const initialPagination = ref({ const paginationLabel = (start: string, end: string, total: string) => { if (props.paging == true) - return " " + start + " ใน " + end + " จากจำนวน " + total + " รายการ"; + return " " + start + " ถึง " + end + " จากจำนวน " + total + " รายการ"; else return start + "-" + end + " ใน " + total; }; diff --git a/src/modules/03_recruiting/components/TableCandidate.vue b/src/modules/03_recruiting/components/TableCandidate.vue index 63c260568..2a23e4c79 100644 --- a/src/modules/03_recruiting/components/TableCandidate.vue +++ b/src/modules/03_recruiting/components/TableCandidate.vue @@ -345,7 +345,7 @@ const updateVisibleFilter = (value: any) => { const paginationLabel = (start: string, end: string, total: string) => { if (props.paging == true) - return " " + start + " ใน " + end + " จากจำนวน " + total + " รายการ"; + return " " + start + " ถึง " + end + " จากจำนวน " + total + " รายการ"; else return start + "-" + end + " ใน " + total; };