refactor: add page size
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 6s
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 6s
This commit is contained in:
parent
3ddea74b73
commit
d4f021d0e6
4 changed files with 39 additions and 5 deletions
|
|
@ -2660,7 +2660,15 @@ watch(
|
|||
{{ $t('general.recordPerPage') }}
|
||||
</div>
|
||||
<div>
|
||||
<PaginationPageSize v-model="pageSizeGroup" />
|
||||
<PaginationPageSize
|
||||
v-model="pageSizeGroup"
|
||||
:fetch-data="
|
||||
async () => {
|
||||
await fetchListGroups();
|
||||
flowStore.rotate();
|
||||
}
|
||||
"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -3419,7 +3427,15 @@ watch(
|
|||
{{ $t('general.recordPerPage') }}
|
||||
</div>
|
||||
<div>
|
||||
<PaginationPageSize v-model="pageSizeServiceAndProduct" />
|
||||
<PaginationPageSize
|
||||
v-model="pageSizeServiceAndProduct"
|
||||
:fetch-data="
|
||||
async () => {
|
||||
await alternativeFetch();
|
||||
flowStore.rotate();
|
||||
}
|
||||
"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -923,7 +923,10 @@ watch(
|
|||
{{ $t('general.recordPerPage') }}
|
||||
</div>
|
||||
<div>
|
||||
<PaginationPageSize v-model="pageSize" />
|
||||
<PaginationPageSize
|
||||
v-model="pageSize"
|
||||
:fetch-data="() => fetchData()"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -647,7 +647,10 @@ watch(
|
|||
{{ $t('general.recordPerPage') }}
|
||||
</div>
|
||||
<div>
|
||||
<PaginationPageSize v-model="pageSize" />
|
||||
<PaginationPageSize
|
||||
v-model="pageSize"
|
||||
:fetch-data="() => fetchData()"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue