forked from p96170835/amis
合并单元格,对象类型的对比优化
This commit is contained in:
parent
1a496ad942
commit
70b335702f
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue