Fansaly

Results 4 comments of Fansaly

实现复杂分组表头最小侵入方案: > 已有单元测试测试通过 新增 src/utils/convertUtil.ts ```ts interface Column { [key: string | symbol]: any; }; interface Options { children: string; colSpan: string; rowSpan: string; hidden: string; } export function convertColumns(...

@afc163 #1118 PR 已提交

新增**复杂分组表头**后会造成以下影响 - 复杂分组表头下的 `colStart` `colEnd` 计算不正确 > 在显式指定的 `colSpan` 或 `rowSpan` 大于或者等于 2 时 - table 数据为空时 `.rc-table-placeholder .rc-table-cell` 的 `colspan` 值不正确 > 在 `flattenColumns.length` 与 `实际表头列数` 不一致时 改动的文件可能较多,继续在 #1118...

- [x] 复杂分组表头 - [x] 复杂分组表头下 colStart 与 colEnd 不正确的问题 - [x] 复杂分组表头下,且数据为空时 body colspan 不正确的问题 - [x] 测试 (匿了