|
@@ -980,6 +980,11 @@ func GetExcelRuleList(excelInfoId int) (resp *response.ExcelRuleListResp, err er
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
|
+ for _, v := range excelInfoList {
|
|
|
+ v.BackgroundColor = strings.TrimSpace(v.BackgroundColor)
|
|
|
+ v.FontColor = strings.TrimSpace(v.FontColor)
|
|
|
+ resp.List = append(resp.List, v)
|
|
|
+ }
|
|
|
resp.List = excelInfoList
|
|
|
return
|
|
|
}
|