|
@@ -1255,6 +1255,13 @@ func GetTableDataByMixedTableData(config [][]request.MixedTableCellDataReq, hide
|
|
|
tmp.Ht = 2
|
|
|
}
|
|
|
tmp.Monitor = cell.ShowFormatValue
|
|
|
+ // 如果没有showValue, 则使用value
|
|
|
+ if cell.ShowValue == "" {
|
|
|
+ _, err := strconv.ParseFloat(cell.Value, 64)
|
|
|
+ if err == nil {
|
|
|
+ cell.ShowValue = cell.Value
|
|
|
+ }
|
|
|
+ }
|
|
|
_, err := strconv.ParseFloat(cell.ShowValue, 64)
|
|
|
if err == nil {
|
|
|
hasPercent := false
|