Item create view #285

Merged
jsegarra merged 8 commits from :feature/ItemCreate into dev 2024-04-17 11:42:51 +00:00
1 changed files with 11 additions and 9 deletions
Showing only changes of commit b4d92d4f97 - Show all commits

View File

@ -117,16 +117,18 @@ onBeforeMount(async () => {
hide-selected
>
<template #option="scope">
Review

Arreglar para que no se corten las palabras, lo demas esta OK

Arreglar para que no se corten las palabras, lo demas esta OK
Review

Corregido

Commit: b4d92d4f97

Corregido Commit: https://gitea.verdnatura.es/verdnatura/salix-front/commit/b4d92d4f977a6c211d37ec38ed733728c6f31e3e
<QItem v-bind="scope.itemProps">
<QItemSection style="max-width: 20%">
<QItemLabel>
<QItem class="column" v-bind="scope.itemProps">
<QItemLabel class="row">
<span style="width: 3em">
{{ scope.opt?.code }}
</QItemLabel>
<QItemLabel caption>
{{ scope.opt?.category?.name }}
</QItemLabel>
</QItemSection>
<QItemSection>{{ scope.opt?.name }}</QItemSection>
</span>
<span>
{{ scope.opt?.name }}
</span>
</QItemLabel>
<QItemLabel v-if="scope.opt?.category" caption>
{{ scope.opt?.category?.name }}
</QItemLabel>
</QItem>
</template>
</VnSelectFilter>