Roc 1 year ago
parent
commit
f76c0606d8
1 changed files with 6 additions and 0 deletions
  1. 6 0
      services/data/table/mixed_table.go

+ 6 - 0
services/data/table/mixed_table.go

@@ -188,6 +188,12 @@ func GetMixedTableCellData(mixedTableReq request.MixedTableReq) (newMixedTableCe
 						cell.ShowValue = fmt.Sprint(val)
 					}
 				}
+
+				calculateCellMap[cell.Uid] = Cell{
+					Column:   k,
+					Row:      i,
+					CellInfo: cell,
+				}
 			case request.CustomTextDT: //自定义文本
 				if cell.Value == `` {
 					continue