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