This commit is contained in:
theluyuan 2024-09-25 09:59:38 +08:00
parent 0c45925be9
commit 47efc3461d
7 changed files with 49 additions and 55 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -249,7 +249,8 @@ const renderFixedClassName = (column: any, columnIndex: number) => {
left = false;
}
}
return left ? `layui-table-fixed-left-last` : "";
// return left ? `layui-table-fixed-left-last` : "";
return "";
} else {
var right = true;
for (var i = 0; i < columnIndex; i++) {
@ -261,7 +262,8 @@ const renderFixedClassName = (column: any, columnIndex: number) => {
right = false;
}
}
return right ? `layui-table-fixed-right-first` : "";
return "";
// return right ? `layui-table-fixed-right-first` : "";
}
}
};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long