ปรับการแสดงผล

This commit is contained in:
Warunee Tamkoo 2024-02-15 15:23:39 +07:00
parent d83bd256cb
commit 6327df0774
9 changed files with 25 additions and 13 deletions

View file

@ -423,7 +423,7 @@ watch([() => page.value, () => pageSize.value], () => {
<DialogHeader :tittle="`เลือกคนครอง`" :close="close" />
<q-separator />
<q-card-section>
<q-card-section class="fixed-height">
<div class="q-px-md">
<div class="row q-col-gutter-sm q-mb-xs">
<div class="text-bold text-body1">
@ -713,4 +713,10 @@ watch([() => page.value, () => pageSize.value], () => {
</q-card>
</q-dialog>
</template>
<style scoped></style>
<style scoped>
.fixed-height {
overflow-y: auto;
height: 80vh;
}
</style>