@@ -563,6 +563,13 @@ export default {
objectSpanMethod({ row, column, rowIndex, columnIndex }) {
if (columnIndex === 1) {
+ if(row.sId == 1070 || row.sId == 1071){
+ return {
+ rowspan: 1,
+ colspan: 1
+ };
+ }
+
if (rowIndex % this.ListCount === 0) {
return {
rowspan: this.ListCount,
@@ -574,21 +581,6 @@ export default {
colspan: 0
};
}
-
- // if (columnIndex === 1) {
- // if (rowIndex % 2 === 0) {
- // return {
- // rowspan: 2,
- // colspan: 1
- // };
- // } else {
- // rowspan: 0,
- // colspan: 0
- // }
},