This commit is contained in:
ygx
2026-03-15 23:16:00 +08:00
parent 18072d75a4
commit 2835695d78
36 changed files with 6902 additions and 17 deletions

View File

@@ -118,7 +118,7 @@ const props = defineProps({
},
showDownload: {
type: Boolean,
default: true,
default: false,
},
showRefresh: {
type: Boolean,
@@ -166,6 +166,7 @@ const emit = defineEmits<{
(e: 'column-change', columns: TableColumnData[]): void
}>()
// 计算需要插槽的列(动态插槽透传)
const slotColumns = computed(() => {
return props.columns.filter(col => col.slotName)