Browse Source

修复eta发布时间格式

kobe6258 8 months ago
parent
commit
325a99a6dd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      domian/report/report_service.go

+ 1 - 1
domian/report/report_service.go

@@ -94,7 +94,7 @@ func GetGetReportById(reportId int) (ReportDTO ReportDTO, err error) {
 		names = stringUtils.UniqueItems(names)
 		report.Author = strings.Join(names, ",")
 	}
-	report.PublishedTime = report.PublishedTime[:10]
+	//report.PublishedTime = report.PublishedTime
 	ReportDTO = convertReportDTO(report)
 	return
 }