fix: limit width some fields
This commit is contained in:
parent
289bdeecae
commit
fa82efe5d2
|
@ -29,7 +29,7 @@ module.exports = configure(function (/* ctx */) {
|
||||||
// app boot file (/src/boot)
|
// app boot file (/src/boot)
|
||||||
// --> boot files are part of "main.js"
|
// --> boot files are part of "main.js"
|
||||||
// https://v2.quasar.dev/quasar-cli/boot-files
|
// https://v2.quasar.dev/quasar-cli/boot-files
|
||||||
boot: ['i18n', 'axios', 'vnDate', 'validations', 'quasar.defaults'],
|
boot: ['i18n', 'axios', 'vnDate', 'validations', 'quasar', 'quasar.defaults'],
|
||||||
|
|
||||||
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#css
|
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#css
|
||||||
css: ['app.scss'],
|
css: ['app.scss'],
|
||||||
|
|
|
@ -43,10 +43,23 @@ const agencyOptions = ref([]);
|
||||||
:rules="validate('zone.agencyModeFk')"
|
:rules="validate('zone.agencyModeFk')"
|
||||||
:options="agencyOptions"
|
:options="agencyOptions"
|
||||||
:label="t('Agency')"
|
:label="t('Agency')"
|
||||||
|
emit-value
|
||||||
|
map-options
|
||||||
|
use-input
|
||||||
|
hide-bottom-space
|
||||||
|
/>
|
||||||
|
<VnInput
|
||||||
|
class="mw-10"
|
||||||
|
v-model="data.itemMaxSize"
|
||||||
|
:label="t('Max m³')"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
<VnInput
|
||||||
|
class="mw-10"
|
||||||
|
v-model="data.m3Max"
|
||||||
|
:label="t('Maximum m³')"
|
||||||
clearable
|
clearable
|
||||||
/>
|
/>
|
||||||
<VnInput v-model="data.itemMaxSize" :label="t('Max m³')" clearable />
|
|
||||||
<VnInput v-model="data.m3Max" :label="t('Maximum m³')" clearable />
|
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
|
||||||
<VnRow class="row q-gutter-md q-mb-md">
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
@ -70,7 +83,11 @@ const agencyOptions = ref([]);
|
||||||
</template>
|
</template>
|
||||||
</FormModel>
|
</FormModel>
|
||||||
</template>
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.mw-10 {
|
||||||
|
max-width: 10vw;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<i18n>
|
<i18n>
|
||||||
es:
|
es:
|
||||||
Name: Nombre
|
Name: Nombre
|
||||||
|
|
Loading…
Reference in New Issue