소스 검색

Merge branch 'eta/1.1.6' into debug

Roc 1 년 전
부모
커밋
70a6f9f6f0
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  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