fix: 应为最大高度而非固定高度

This commit is contained in:
dap 2024-10-13 10:46:27 +08:00
parent 6677d5cfa8
commit 415176b2ee

View File

@ -60,7 +60,7 @@ const formSchema = computed((): VbenFormSchema[] => {
component: 'VbenSelect',
componentProps: {
class: 'bg-background h-[40px] focus:border-primary',
contentClass: 'h-[256px] overflow-y-auto',
contentClass: 'max-h-[256px] overflow-y-auto',
options: tenantInfo.value.voList?.map((item) => ({
label: item.companyName,
value: item.tenantId,