This commit is contained in:
2026-05-02 09:59:06 +08:00
parent ea3e60c17c
commit 1af4075e9b
249 changed files with 11209 additions and 14884 deletions

View File

@@ -187,7 +187,7 @@ const densityList = [
// 计算需要插槽的列(只在 columns 变化时重新计算)
const slotColumns = computed(() => {
return props.columns.filter(col => col.slotName)
return props.columns.filter((col) => col.slotName)
})
const onPageChange = (current: number) => {
@@ -259,7 +259,7 @@ const popupVisibleChange = (val: boolean) => {
// 初始化列配置
const initColumns = () => {
const cols = props.columns.map(item => ({
const cols = props.columns.map((item) => ({
...item,
checked: true,
}))