fix: the problem of unable to page across columns in the same row Hufe921#41

pr675
zhenglingpeng 2 years ago
parent f33b61abd9
commit 911bf14e58

@ -1413,9 +1413,7 @@ export class Draw {
}
}
}
for (let i = tr.tdList.length - 1; i >= item.col; i--) {
tr.tdList[i + 1] = tr.tdList[i]
}
tr.tdList.splice(item.col, 0, tr.tdList[tr.tdList.length - 1])
const tempRow = item.row - item.count
tr.tdList[mdColIndex] = {
...cell,
@ -1424,7 +1422,7 @@ export class Draw {
height: height - initHeight,
realHeight: height - initRealHeight,
realMinHeight: height - initRealMinHeight,
tempFlag: true,
temporaryFlag: true,
parentTr: `${mdColIndex}-${mdRowIndex}`,
value: cell.value.map(item => ({ ...item, value: '' }))
}
@ -1438,9 +1436,10 @@ export class Draw {
deleteStart = r + 1
deleteCount = trList.length - deleteStart
preTrHeight += trHeight
// 重新记录临时的td
for (let i = 0; i < trList.length; i++) {
for (let j = trList[i]?.tdList.length - 1; j >= 0; j--) {
if (trList[i]?.tdList[j]?.tempFlag) {
if (trList[i]?.tdList[j]?.temporaryFlag) {
const tempTd = trList[i].tdList[j]
if (tempTd.parentTr) {
const mdRowIndex = parseInt(

@ -29,6 +29,6 @@ export interface ITd {
mainHeight?: number // 内容 + 内边距高度
realHeight?: number // 真实高度(包含跨列)
realMinHeight?: number // 真实最小高度(包含跨列)
tempFlag?: boolean,
parentTr?: string
temporaryFlag?: boolean, // 临时单元格标识
parentTr?: string // 记录临时单元格的父级tr用于合并单元格
}

Loading…
Cancel
Save