变更
This commit is contained in:
@@ -748,7 +748,8 @@ const renderFixedClassName = (column: any, columnIndex: number) => {
|
||||
left = false;
|
||||
}
|
||||
}
|
||||
return left ? `layui-table-fixed-left-last` : "";
|
||||
return "";
|
||||
// return left ? `layui-table-fixed-left-last` : "";
|
||||
} else {
|
||||
var right = true;
|
||||
for (var i = 0; i < columnIndex; i++) {
|
||||
@@ -760,7 +761,8 @@ const renderFixedClassName = (column: any, columnIndex: number) => {
|
||||
right = false;
|
||||
}
|
||||
}
|
||||
return right ? `layui-table-fixed-right-first` : "";
|
||||
return "";
|
||||
// return right ? `layui-table-fixed-right-first` : "";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
export const TAG_COLORS = ["primary", "normal", "warm", "danger"] as const;
|
||||
|
||||
export type TagType = typeof TAG_COLORS[number];
|
||||
export type TagType = (typeof TAG_COLORS)[number];
|
||||
|
||||
export type TagShape = "square" | "round";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user