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{
"任务标题", "艺人编号", "艺人姓名", "内容类型", "内容标题", "执行结果", "原因", "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)
}