|
|
@ -78,12 +78,14 @@ const isLinks = computed(() => vModel.value.uidt === UITypes.Links) |
|
|
|
@change="onDataTypeChange" |
|
|
|
@change="onDataTypeChange" |
|
|
|
> |
|
|
|
> |
|
|
|
<a-select-option v-for="table of refTables" :key="table.title" :value="table.id"> |
|
|
|
<a-select-option v-for="table of refTables" :key="table.title" :value="table.id"> |
|
|
|
<div class="flex items-center gap-2"> |
|
|
|
<div class="flex w-full items-center gap-2"> |
|
|
|
<div class="min-w-5 flex items-center justify-center"> |
|
|
|
<div class="min-w-5 flex items-center justify-center"> |
|
|
|
<GeneralTableIcon :meta="table" class="text-gray-500" /> |
|
|
|
<GeneralTableIcon :meta="table" class="text-gray-500" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<NcTooltip class="flex-1 truncate"> |
|
|
|
<span class="overflow-ellipsis min-w-0 shrink-1">{{ table.title }}</span> |
|
|
|
<template #title>{{ table.title }}</template> |
|
|
|
|
|
|
|
<span>{{ table.title }}</span> |
|
|
|
|
|
|
|
</NcTooltip> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</a-select-option> |
|
|
|
</a-select-option> |
|
|
|
</a-select> |
|
|
|
</a-select> |
|
|
|