Update cron.go

This commit is contained in:
bx1834938347-prog 2026-01-13 11:15:30 +08:00
parent cfdd16ca47
commit fcc838ff43

View File

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