From 6bdd18b414ccab13a0547f9f5d785957ef240641 Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Tue, 26 Mar 2024 11:21:29 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=9C=E0=B8=B1=E0=B8=87=E0=B8=9A=E0=B8=B1?= =?UTF-8?q?=E0=B8=8D=E0=B8=8A=E0=B8=B5=E0=B8=84=E0=B9=88=E0=B8=B2=E0=B8=88?= =?UTF-8?q?=E0=B9=89=E0=B8=B2=E0=B8=87=E0=B8=A5=E0=B8=B9=E0=B8=81=E0=B8=88?= =?UTF-8?q?=E0=B9=89=E0=B8=B2=E0=B8=87=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B8=88?= =?UTF-8?q?=E0=B8=B3=20Tab=20=E0=B8=AB=E0=B8=A5=E0=B8=B1=E0=B8=81=E0=B9=80?= =?UTF-8?q?=E0=B8=81=E0=B8=93=E0=B8=91=E0=B9=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/salaryEmployeeChart/TabCriteria.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/modules/13_salary/components/salaryEmployeeChart/TabCriteria.vue b/src/modules/13_salary/components/salaryEmployeeChart/TabCriteria.vue index 6842696a5..db4a52c98 100644 --- a/src/modules/13_salary/components/salaryEmployeeChart/TabCriteria.vue +++ b/src/modules/13_salary/components/salaryEmployeeChart/TabCriteria.vue @@ -276,8 +276,9 @@ onMounted(() => { :rows="rows" :columns="columns" row-key="name" + class="custom-header-table" v-model:pagination="pagination" - :rows-per-page-options="[1, 20, 50, 100]" + :rows-per-page-options="[20, 50, 100,200]" :visible-columns="visibleColumns" @update:pagination="updatePageSize" > @@ -294,7 +295,11 @@ onMounted(() => {
- {{ props.rowIndex + 1 }} + {{ + (formFilter.page - 1) * Number(pagination.rowsPerPage) + + props.rowIndex + + 1 + }}