forked from verdnatura/salix-front
Update shelving filter fields
This commit is contained in:
parent
71e729c0f4
commit
57b06f7d1f
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue