你的数据是需要排列好的, 把所有一样的数据都排序到一起
// 获取需要合并的位置
const getSpanNumber = (data: User[], prop: string) => {
const length = data.length
if (length > 0) {
let position = 0
let temp = data[0][prop]
const result = [1]
for (let i = 1; i < length; i++) {
if (data[i][prop] === temp) {
result[position] += 1
result[i] = 0
} else {
position = i
result[i] = 1
temp = data[i][prop]
}
}
return result
}
return [0]
}
const objectSpanMethod = ({
row,
column,
rowIndex,
columnIndex,
}: SpanMethodProps) => {
if (columnIndex === 0) {
const nameSpan = getSpanNumber(tableData, 'classId')
return {
rowspan: nameSpan[rowIndex],
colspan: 1,
}
}
if (columnIndex === 6) {
const nameSpan = getSpanNumber(tableData, 'classId')
return {
rowspan: nameSpan[rowIndex],
colspan: 1,
}
}
if (columnIndex === 5) {
const nameSpan = getSpanNumber(tableData, 'classId')
return {
rowspan: nameSpan[rowIndex],
colspan: 1,
}
}
}
如果手动去判断合并单元格则需要把被占位的单元格的空间设置为 0(此处是合并列)
// 这里合并了 第一列名为 本章均值 , 此处占位两列也就是说把第二列的空间占用了
if (columnIndex === 0) {
console.log(column);
if (row.sectionName == '本章均值') {
return {
rowspan: 1,
colspan: 2
}
}
}
// 这里就要把第二列名为 本章均值 设置为 0 因为他的空间被上面的占走了
if (columnIndex === 1) {
if (row.sectionName == '本章均值') {
return {
rowspan: 1,
colspan: 0
}
}
}
return {
rowspan: 1,
colspan: 1
}
标签:rowspan,const,nameSpan,colspan,单元格,合并,element,columnIndex,return
From: https://www.cnblogs.com/shiazhen/p/17358204.html