ElementUi table合并
merageArr: any = [] // 每个列应该合并的rowspan index为列的序号 其value为需要合并的数值
merageIndex = 0
merge(){
// 避免筛选合并时出现错行
this.dataList = this.dataList.sort((a,b)=> a.rId-b.rId)
// 遍历数组 通过一个key判断是否与上一项相同
// 结果类似于:[3,0,0,2,0] 第一个合并3行,剩下的两个为0...