|
@@ -612,10 +612,12 @@ func GetGroupPptList(groupId int64, adminId int) (ret models.RespGroupPptList, e
|
|
|
AdminRealName: pptV.AdminRealName,
|
|
|
IsSingleShare: 0,
|
|
|
PptCreateTime: pptInfo.CreateTime.Format(utils.FormatDateTime),
|
|
|
+ PptModifyTime: pptInfo.ModifyTime.Format(utils.FormatDateTime),
|
|
|
PptxUrl: pptInfo.PptxUrl,
|
|
|
PptVersion: pptInfo.PptVersion,
|
|
|
ReportId: pptInfo.ReportId,
|
|
|
ReportCode: pptInfo.ReportCode,
|
|
|
+ PublishTime: pptInfo.PublishTime.Format(utils.FormatDateTime),
|
|
|
}
|
|
|
if pptV.ChildGroupPptId > 0 {
|
|
|
tmp.IsSingleShare = 1
|
|
@@ -1556,6 +1558,7 @@ func GetMyPptList(adminId int, keyword string) (ret models.RespGroupPptList, err
|
|
|
BackgroundImg: v.BackgroundImg,
|
|
|
Title: v.Title,
|
|
|
PptCreateTime: v.CreateTime.Format(utils.FormatDateTime),
|
|
|
+ PptModifyTime: v.ModifyTime.Format(utils.FormatDateTime),
|
|
|
AdminId: v.AdminId,
|
|
|
AdminRealName: v.AdminRealName,
|
|
|
PptVersion: v.PptVersion,
|
|
@@ -1563,6 +1566,7 @@ func GetMyPptList(adminId int, keyword string) (ret models.RespGroupPptList, err
|
|
|
PptxUrl: v.PptxUrl,
|
|
|
ReportId: v.ReportId,
|
|
|
ReportCode: v.ReportCode,
|
|
|
+ PublishTime: v.PublishTime.Format(utils.FormatDateTime),
|
|
|
}
|
|
|
list = append(list, tmpV)
|
|
|
}
|