|
@@ -490,16 +490,16 @@ export default {
|
490
|
490
|
"operation",
|
491
|
491
|
];
|
492
|
492
|
if (fields.includes(column.property)) {
|
493
|
|
- const cellValue = row["checkTeamId"];
|
|
493
|
+ const cellValue = row["id"];
|
494
|
494
|
if (cellValue && fields.includes(column.property)) {
|
495
|
495
|
const prevRow = this.postList[rowIndex - 1];
|
496
|
496
|
let nextRow = this.postList[rowIndex + 1];
|
497
|
|
- if (prevRow && prevRow["checkTeamId"] === cellValue) {
|
|
497
|
+ if (prevRow && prevRow["id"] === cellValue) {
|
498
|
498
|
return { rowspan: 0, colspan: 0 };
|
499
|
499
|
} else {
|
500
|
500
|
// return { rowspan: row.rowspan, colspan: 1 }
|
501
|
501
|
let countRowspan = 1;
|
502
|
|
- while (nextRow && nextRow["checkTeamId"] === cellValue) {
|
|
502
|
+ while (nextRow && nextRow["id"] === cellValue) {
|
503
|
503
|
nextRow = this.postList[++countRowspan + rowIndex];
|
504
|
504
|
}
|
505
|
505
|
if (countRowspan > 1) {
|