v3.5.9版本迭代列表优化
CI / verify (pull_request) Has been cancelled

This commit is contained in:
2026-08-25 12:38:21 +08:00
parent 282da24bc4
commit f4da71e952
62 changed files with 5027 additions and 4202 deletions
@@ -60,6 +60,8 @@ export function isHqListColumnKey(value: string): value is HqListColumnKey {
export type HqListColumnPref = {
order: string[];
hidden: string[];
/** 列宽(px);未出现的 key 用列默认 width */
widths?: Record<string, number>;
};
export type HqListColumnPrefsMap = Partial<Record<HqListColumnKey, HqListColumnPref>>;
@@ -68,4 +70,5 @@ export type SaveHqListColumnPrefsRequest = {
reset?: boolean;
order?: string[];
hidden?: string[];
widths?: Record<string, number>;
};