Merge branch 'develop' into working

This commit is contained in:
Kittapath 2023-10-18 01:44:44 +07:00
commit 33e1f9c951
15 changed files with 1621 additions and 342 deletions

View file

@ -191,6 +191,18 @@
selection="multiple"
v-model:selected="selected"
>
<template v-slot:pagination="scope">
<q-pagination
v-model="pagination.page"
active-color="primary"
color="dark"
:max="scope.pagesNumber"
:max-pages="5"
size="sm"
boundary-links
direction-links
></q-pagination>
</template>
<template v-slot:header="props">
<q-tr :props="props">
<q-th auto-width>
@ -239,7 +251,12 @@ const selected = ref<string[]>([]);
const { messageError, showLoader, hideLoader } = mixin;
const dateFilter = ref<[Date, Date]>([new Date(), new Date()]); //
const pagination = ref({
// sortBy: "desc",
descending: false,
page: 1,
rowsPerPage: 10,
});
const props = defineProps({
inputfilter: String,
inputvisible: Array,