浏览代码

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