#8194 created VnSelectWorker component #977

Merged
jon merged 10 commits from 8194-VnSelectWorker into dev 2024-12-09 12:04:18 +00:00
1 changed files with 2 additions and 5 deletions
Showing only changes of commit 96920dd540 - Show all commits

View File

@ -68,20 +68,17 @@ const url = computed(() => {
<QTooltip>{{ $t($props.hasInfo) }}</QTooltip>
</QIcon>
</template>
<slot name="more-options" />
<template #option="scope">
<QItem v-bind="scope.itemProps">
<QItemSection>
<QItemLabel>
{{ scope.opt.name }}
{{ console.log('scope.opt: ', scope.opt) }}
</QItemLabel>
<QItemLabel v-if="!scope.opt.id">
{{ scope.opt.nickname }}
</QItemLabel>
<QItemLabel caption v-if="scope.opt.id">
{{ scope.opt.nickname }},
{{ scope.opt.code }}
<QItemLabel caption v-else>
{{ scope.opt.nickname }}, {{ scope.opt.code }}
</QItemLabel>
</QItemSection>
</QItem>