|
|
@ -241,7 +241,7 @@ |
|
|
|
data["Item"].forEach((item, index) => { |
|
|
|
item.key = item["AP_ArticleDemandEmergency-ArtId"]; |
|
|
|
item.Label = this.labelList[item["AP_ArticleDemandEmergency-Label"]]; |
|
|
|
if (index % 10 == 0) { |
|
|
|
if (index % 11 == 0) { |
|
|
|
item.show = true; |
|
|
|
} else { |
|
|
|
item.show = false; |
|
|
@ -365,8 +365,8 @@ |
|
|
|
}, |
|
|
|
// 合并单元格 |
|
|
|
arraySpanMethod({ rowIndex, columnIndex }) { |
|
|
|
if (rowIndex % 10 > 0 && columnIndex < 8) { |
|
|
|
if (rowIndex % 10 == 1 && columnIndex == 0) { |
|
|
|
if (rowIndex % 11 > 0 && columnIndex < 8) { |
|
|
|
if (rowIndex % 11 == 1 && columnIndex == 0) { |
|
|
|
return [9, 8]; |
|
|
|
} else { |
|
|
|
return [0, 0]; |
|
|
|