|
@@ -1034,12 +1034,16 @@ func GetTableDataByCustomData(excelType int, data request.TableDataReq, lang str
|
|
|
if v.Data[i].DataType == 5 {
|
|
|
background = "#ffefdd"
|
|
|
}
|
|
|
- dataCol = append(dataCol, LuckySheetDataValue{
|
|
|
+ tmpCol := LuckySheetDataValue{
|
|
|
Value: v.Data[i].Value,
|
|
|
Monitor: v.Data[i].ShowValue,
|
|
|
MergeCell: LuckySheetDataConfigMerge{},
|
|
|
Background: background,
|
|
|
- })
|
|
|
+ }
|
|
|
+ if tmpCol.Monitor == `` {
|
|
|
+ tmpCol.Monitor = "-"
|
|
|
+ }
|
|
|
+ dataCol = append(dataCol, tmpCol)
|
|
|
}
|
|
|
|
|
|
tableDataList = append(tableDataList, dataCol)
|
|
@@ -1051,11 +1055,16 @@ func GetTableDataByCustomData(excelType int, data request.TableDataReq, lang str
|
|
|
for _, textColList := range data.TextRowData {
|
|
|
dataCol := make([]LuckySheetDataValue, 0)
|
|
|
for _, v := range textColList {
|
|
|
- dataCol = append(dataCol, LuckySheetDataValue{
|
|
|
+ tmpCol := LuckySheetDataValue{
|
|
|
Value: v.Value,
|
|
|
Monitor: v.ShowValue,
|
|
|
MergeCell: LuckySheetDataConfigMerge{},
|
|
|
- })
|
|
|
+ }
|
|
|
+ tmpCol.Value = v.Value
|
|
|
+ if tmpCol.Monitor == "" {
|
|
|
+ tmpCol.Monitor = "-"
|
|
|
+ }
|
|
|
+ dataCol = append(dataCol, tmpCol)
|
|
|
}
|
|
|
tableDataList = append(tableDataList, dataCol)
|
|
|
}
|
|
@@ -1101,11 +1110,15 @@ func GetTableDataByCustomData(excelType int, data request.TableDataReq, lang str
|
|
|
|
|
|
// 文本列
|
|
|
for _, textColList := range data.TextRowData {
|
|
|
- firstCol = append(firstCol, LuckySheetDataValue{
|
|
|
+ tmpCol := LuckySheetDataValue{
|
|
|
Value: textColList[0].Value,
|
|
|
Monitor: textColList[0].ShowValue,
|
|
|
MergeCell: LuckySheetDataConfigMerge{},
|
|
|
- })
|
|
|
+ }
|
|
|
+ if tmpCol.Monitor == `` {
|
|
|
+ tmpCol.Monitor = "-"
|
|
|
+ }
|
|
|
+ firstCol = append(firstCol, tmpCol)
|
|
|
}
|
|
|
|
|
|
tableDataList = append(tableDataList, firstCol)
|
|
@@ -1159,23 +1172,30 @@ func GetTableDataByCustomData(excelType int, data request.TableDataReq, lang str
|
|
|
if tmpData.DataType == 5 {
|
|
|
background = "#ffefdd"
|
|
|
}
|
|
|
- dataCol = append(dataCol, LuckySheetDataValue{
|
|
|
+ tmpCol := LuckySheetDataValue{
|
|
|
Value: tmpData.Value,
|
|
|
Monitor: tmpData.ShowValue,
|
|
|
MergeCell: LuckySheetDataConfigMerge{},
|
|
|
Background: background,
|
|
|
- })
|
|
|
+ }
|
|
|
+ if tmpCol.Monitor == `` {
|
|
|
+ tmpCol.Monitor = "-"
|
|
|
+ }
|
|
|
+ dataCol = append(dataCol, tmpCol)
|
|
|
}
|
|
|
|
|
|
// 文本列
|
|
|
for _, textColList := range data.TextRowData {
|
|
|
- dataCol = append(dataCol, LuckySheetDataValue{
|
|
|
+ tmpCol := LuckySheetDataValue{
|
|
|
Value: textColList[i+1].Value,
|
|
|
Monitor: textColList[i+1].ShowValue,
|
|
|
MergeCell: LuckySheetDataConfigMerge{},
|
|
|
- })
|
|
|
+ }
|
|
|
+ if tmpCol.Monitor == `` {
|
|
|
+ tmpCol.Monitor = "-"
|
|
|
+ }
|
|
|
+ dataCol = append(dataCol, tmpCol)
|
|
|
}
|
|
|
-
|
|
|
tableDataList = append(tableDataList, dataCol)
|
|
|
}
|
|
|
|
|
@@ -1202,6 +1222,10 @@ func GetTableDataByMixedTableData(config [][]request.MixedTableCellDataReq, hide
|
|
|
Monitor: cell.ShowValue,
|
|
|
MergeCell: LuckySheetDataConfigMerge{},
|
|
|
}
|
|
|
+ if cell.DataType != request.CustomTextDT && tmp.Monitor == `` {
|
|
|
+ tmp.Monitor = "-"
|
|
|
+ cell.ShowFormatValue = "-"
|
|
|
+ }
|
|
|
// 前端需要隐藏被合并的单元格, 混合表格/平衡表通过这个字段判断, 不通过HandleTableCell方法隐藏
|
|
|
if cell.MerData != nil {
|
|
|
if hideMerged && cell.MerData.Type == "merged" {
|