elementui table 合并行 :span-method 这个方法
默认往下合并 但是我想要的事网上合并 能否事先
})### 问题描述
问题出现的环境背景及自己尝试过哪些方法
默认往下合并 但是我想要的事网上合并 能否事先
相关代码
// 请把代码文本粘贴到下方(请勿用图片代替代码)
计算合并行
this.tableData.forEach((item, index) => {
if (index === 0) {
this.spanArr.push(1)
this.position = 0
} else {
if (this.tableData[index].name=== this.tableData[index - 1].name) {
this.spanArr[this.position] += 1
this.spanArr.push(0)
} else {
this.spanArr.push(1)
this.position = index
}
}