作者 tangxvhui

更新 excel样式

... ... @@ -199,6 +199,7 @@ func (e *exportData2) setData(param []dao.ExportData1) {
child = e.rowSort.addChild(v.BeginDay) //日期
child.addChild(v.TargetUserId) //员工id
key := e.dataKey(v.TargetUserId, v.BeginDay, v.Category, v.ContentName)
//整理 员工填写的数据
e.data[key] = &strings.Builder{}
e.data[key].WriteString(v.Value + "\n")
for _, v2 := range v.Remark {
... ...
... ... @@ -839,5 +839,6 @@ func (srv StaffAssessServeice) ExportUserAssess(param *query.ExportAssessContent
}
}
}
xlsxFile.MergeCell(sheetName, "A1", fmt.Sprintf("A%d", colNum))
return xlsxFile, nil
}
... ...
package service
// excel表头部字段
type excelTableHeader struct {
Level1 string
Level2 string
Level3 string
Level4 string
}
// // excel表头部字段
// type excelTableHeader struct {
// Level1 string
// Level2 string
// Level3 string
// Level4 string
// }
... ...