This commit is contained in:
孟帅
2023-05-10 23:54:50 +08:00
parent bbe655a4d8
commit 49a96750bf
314 changed files with 15138 additions and 6244 deletions

View File

@@ -120,7 +120,6 @@
NIcon,
NTag,
NIconWrapper,
NAvatar,
useMessage,
NImage,
useDialog,
@@ -160,13 +159,25 @@
});
} else {
return h(
NAvatar,
NIconWrapper,
{
size: 48,
color: '#2D8CF0',
borderRadius: 8,
},
{
default: () => h(getIconComponent(row.logo)),
default: () =>
h(
NIcon,
{
size: 36,
style: {
marginTop: '-8px',
},
},
{
default: () => h(getIconComponent(row.logo)),
}
),
}
);
}