合并单元格,对象类型的对比优化

This commit is contained in:
rickcole 2020-05-25 20:12:38 +08:00
parent 1a496ad942
commit 70b335702f
1 changed files with 1 additions and 1 deletions

View File

@ -557,7 +557,7 @@ export const TableStore = iRendererStore
let value = resolveVariable(key, row.data);
for (let i = 1, len = arr.length; i < len; i++) {
const current = arr[i];
if (resolveVariable(key, current.data) == value) {
if (isEqual(resolveVariable(key, current.data), value)) {
row.rowSpans[key] += 1;
current.rowSpans[key] = 0;
} else {