Compare commits

...

2 Commits

Author SHA1 Message Date
bx1834938347-prog
6ab28792ec Merge branch 'wwq' into dev 2026-01-13 11:15:59 +08:00
bx1834938347-prog
fcc838ff43 Update cron.go 2026-01-13 11:15:30 +08:00

View File

@ -131,7 +131,7 @@ func ExportExcelExecutionResult(c *gin.Context) {
} }
titleList := []string{ titleList := []string{
"任务标题", "艺人编号", "艺人姓名", "内容类型", "内容标题", "执行结果", "原因", "TIKTOK", "TIKTOK结果", "YOUTUBE", "YOUTUBE结果", "INS", "INS结果", "DM", "DM结果", "BULESKY", "BULESKY结果", "任务标题", "艺人编号", "艺人姓名", "内容类型", "内容标题", "执行结果", "原因", "TIKTOK", "YOUTUBE", "INS", "DM", "BULESKY",
} }
var dataList []interface{} var dataList []interface{}
for _, task := range res.Data { for _, task := range res.Data {
@ -144,15 +144,10 @@ func ExportExcelExecutionResult(c *gin.Context) {
task.ResultDescription, task.ResultDescription,
task.ResultDesc, task.ResultDesc,
task.TIKTOKStatusDesc, task.TIKTOKStatusDesc,
task.TIKTOKResult,
task.YOUTUBEStatusDesc, task.YOUTUBEStatusDesc,
task.YOUTUBEResult,
task.INSStatusDesc, task.INSStatusDesc,
task.INSResult,
task.DMStatusDesc, task.DMStatusDesc,
task.DMResult,
task.BULESKYStatusDesc, task.BULESKYStatusDesc,
task.BULESKYResult,
} }
dataList = append(dataList, &data) dataList = append(dataList, &data)
} }