0
0
Fork 0

Update shelving filter fields

This commit is contained in:
Kevin Martinez 2023-12-11 10:51:40 -04:00
parent 71e729c0f4
commit 57b06f7d1f
1 changed files with 8 additions and 2 deletions

View File

@ -50,12 +50,15 @@ function setParkings(data) {
</template>
<template #body="{ params }">
<QList dense>
<QItem>
<QItem class="q-my-sm">
<QItemSection v-if="!parkings">
<QSkeleton type="QInput" class="full-width" />
</QItemSection>
<QItemSection v-if="parkings">
<QSelect
dense
outlined
rounded
:label="t('params.parkingFk')"
v-model="params.parkingFk"
:options="parkings"
@ -68,12 +71,15 @@ function setParkings(data) {
/>
</QItemSection>
</QItem>
<QItem>
<QItem class="q-mb-sm">
<QItemSection v-if="!workers">
<QSkeleton type="QInput" class="full-width" />
</QItemSection>
<QItemSection v-if="workers">
<QSelect
dense
outlined
rounded
:label="t('params.userFk')"
v-model="params.userFk"
:options="workers"