Ticket tracking #485

Merged
jsegarra merged 7 commits from :feature/TicketTracking into dev 2024-07-01 12:51:11 +00:00
1 changed files with 15 additions and 2 deletions
Showing only changes of commit d409b9ea86 - Show all commits

View File

@ -59,9 +59,22 @@ const onStateFkChange = (formData) => (formData.userFk = user.value.id);
v-model="data.userFk" v-model="data.userFk"
:options="workersOptions" :options="workersOptions"
hide-selected hide-selected
option-label="nickname" option-label="name"
option-value="id" option-value="id"
/> >
<template #option="{ opt, itemProps }">
<QItem v-bind="itemProps">
<QItemSection>
<QItemLabel>
{{ opt.name }}
</QItemLabel>
<QItemLabel caption>
{{ opt.nickname }}, {{ opt.code }}
</QItemLabel>
</QItemSection>
</QItem>
</template></VnSelect
>
</VnRow> </VnRow>
</template> </template>
</FormModelPopup> </FormModelPopup>