ผังบัญชีค่าจ้างลูกจ้างประจำ Tab หลักเกณฑ์
This commit is contained in:
parent
bc5b1a6b3d
commit
6bdd18b414
1 changed files with 7 additions and 2 deletions
|
|
@ -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(() => {
|
|||
<q-tr :props="props" class="cursor-pointer">
|
||||
<q-td v-for="col in props.cols" :key="col.name" :props="props">
|
||||
<div v-if="col.name === 'no'">
|
||||
{{ props.rowIndex + 1 }}
|
||||
{{
|
||||
(formFilter.page - 1) * Number(pagination.rowsPerPage) +
|
||||
props.rowIndex +
|
||||
1
|
||||
}}
|
||||
</div>
|
||||
<!-- <div v-else-if="col.name === 'group'">
|
||||
{{ col.value ? `กลุ่มที่ (${col.value})` : "-" }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue