|
@@ -12,9 +12,9 @@ import (
|
|
|
)
|
|
|
|
|
|
// Detail 报告详情
|
|
|
-func Detail(c *gin.Context) {
|
|
|
+func Detail(c *gin.Context) {
|
|
|
reqReportId := c.DefaultQuery("report_id", "")
|
|
|
- if reqReportId == ""{
|
|
|
+ if reqReportId == "" {
|
|
|
response.Fail("请输入报告ID", c)
|
|
|
return
|
|
|
}
|
|
@@ -27,17 +27,17 @@ func Detail(c *gin.Context) {
|
|
|
|
|
|
reportDetail, err := report.GetReportDetail(userinfo, reportId)
|
|
|
if err != nil {
|
|
|
- response.FailMsg("查看报告详情出错",err.Error(), c)
|
|
|
+ response.FailMsg("查看报告详情出错", err.Error(), c)
|
|
|
return
|
|
|
}
|
|
|
- response.OkData("查询成功", reportDetail, c )
|
|
|
+ response.OkData("查询成功", reportDetail, c)
|
|
|
return
|
|
|
}
|
|
|
|
|
|
// ChapterDetail 章节详情
|
|
|
-func ChapterDetail(c *gin.Context) {
|
|
|
+func ChapterDetail(c *gin.Context) {
|
|
|
reqReportChapterId := c.DefaultQuery("report_chapter_id", "")
|
|
|
- if reqReportChapterId == ""{
|
|
|
+ if reqReportChapterId == "" {
|
|
|
response.Fail("请输入章节ID", c)
|
|
|
return
|
|
|
}
|
|
@@ -50,18 +50,18 @@ func ChapterDetail(c *gin.Context) {
|
|
|
|
|
|
chapterDetail, err := report.GetChapterDetail(userinfo, reportChapterId)
|
|
|
if err != nil {
|
|
|
- response.FailMsg("查看章节详情出错",err.Error(), c)
|
|
|
+ response.FailMsg("查看章节详情出错", err.Error(), c)
|
|
|
return
|
|
|
}
|
|
|
- response.OkData("查询成功", chapterDetail, c )
|
|
|
+ response.OkData("查询成功", chapterDetail, c)
|
|
|
return
|
|
|
}
|
|
|
|
|
|
// List 研报列表
|
|
|
-func List(c *gin.Context) {
|
|
|
+func List(c *gin.Context) {
|
|
|
reqClassifyIdFirst := c.DefaultQuery("classify_id_first", "")
|
|
|
reqClassifyIdSec := c.DefaultQuery("classify_id_second", "")
|
|
|
- keyWord:= c.DefaultQuery("key_word", "")
|
|
|
+ keyWord := c.DefaultQuery("key_word", "")
|
|
|
reqPageIndex := c.DefaultQuery("current_index", "1")
|
|
|
reqPageSize := c.DefaultQuery("page_size", strconv.Itoa(utils.PageSize20))
|
|
|
|
|
@@ -77,7 +77,7 @@ func List(c *gin.Context) {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- if reqClassifyIdFirst == ""{
|
|
|
+ if reqClassifyIdFirst == "" {
|
|
|
response.Fail("请输入分类ID", c)
|
|
|
return
|
|
|
}
|
|
@@ -87,7 +87,7 @@ func List(c *gin.Context) {
|
|
|
return
|
|
|
}
|
|
|
var classifyIdSecond int
|
|
|
- if reqClassifyIdSec != ""{
|
|
|
+ if reqClassifyIdSec != "" {
|
|
|
classifyIdSecond, err = strconv.Atoi(reqClassifyIdSec)
|
|
|
if err != nil {
|
|
|
response.Fail("分类ID格式错误", c)
|
|
@@ -99,10 +99,10 @@ func List(c *gin.Context) {
|
|
|
|
|
|
list, err := report.GetReportList(userinfo, keyWord, classifyIdFirst, classifyIdSecond, pageIndex, pageSize)
|
|
|
if err != nil {
|
|
|
- response.FailMsg("查看研报列表出错",err.Error(), c)
|
|
|
+ response.FailMsg("查看研报列表出错", err.Error(), c)
|
|
|
return
|
|
|
}
|
|
|
- response.OkData("查询成功", list, c )
|
|
|
+ response.OkData("查询成功", list, c)
|
|
|
return
|
|
|
}
|
|
|
|
|
@@ -124,7 +124,7 @@ func CollectReportList(c *gin.Context) {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- if reqChartPermissionId == ""{
|
|
|
+ if reqChartPermissionId == "" {
|
|
|
response.Fail("请输入权限ID", c)
|
|
|
return
|
|
|
}
|
|
@@ -137,10 +137,10 @@ func CollectReportList(c *gin.Context) {
|
|
|
|
|
|
list, err := report.GetCollectReportList(userinfo, chartPermissionId, pageIndex, pageSize)
|
|
|
if err != nil {
|
|
|
- response.FailMsg("汇总报告查询出错",err.Error(), c)
|
|
|
+ response.FailMsg("汇总报告查询出错", err.Error(), c)
|
|
|
return
|
|
|
}
|
|
|
- response.OkData("查询成功", list, c )
|
|
|
+ response.OkData("查询成功", list, c)
|
|
|
return
|
|
|
}
|
|
|
|
|
@@ -162,14 +162,14 @@ func Search(c *gin.Context) {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- if keyWord == ""{
|
|
|
+ if keyWord == "" {
|
|
|
response.Fail("请输入搜索词", c)
|
|
|
return
|
|
|
}
|
|
|
userinfo := userService.GetInfoByClaims(c)
|
|
|
data, err := report.SearchReport(userinfo, keyWord, pageIndex, pageSize)
|
|
|
if err != nil {
|
|
|
- response.FailMsg("搜索报告出错",err.Error(), c)
|
|
|
+ response.FailMsg("搜索报告出错", err.Error(), c)
|
|
|
return
|
|
|
}
|
|
|
response.OkData("查询成功", data, c)
|
|
@@ -177,9 +177,9 @@ func Search(c *gin.Context) {
|
|
|
}
|
|
|
|
|
|
// TickerData 报告详情获取指标数据
|
|
|
-func TickerData(c *gin.Context) {
|
|
|
+func TickerData(c *gin.Context) {
|
|
|
reqReportChapterId := c.DefaultQuery("report_chapter_id", "")
|
|
|
- if reqReportChapterId == ""{
|
|
|
+ if reqReportChapterId == "" {
|
|
|
response.Fail("请输入章节ID", c)
|
|
|
return
|
|
|
}
|
|
@@ -195,12 +195,12 @@ func TickerData(c *gin.Context) {
|
|
|
response.Fail(err.Error(), c)
|
|
|
return
|
|
|
}
|
|
|
- response.OkData("查询成功", chapterDetail, c )
|
|
|
+ response.OkData("查询成功", chapterDetail, c)
|
|
|
return
|
|
|
}
|
|
|
|
|
|
// RddpShareImg 获取报告分享图
|
|
|
-func RddpShareImg(c *gin.Context) {
|
|
|
+func RddpShareImg(c *gin.Context) {
|
|
|
var req request.RddpReportShareImgReq
|
|
|
if c.ShouldBind(&req) != nil {
|
|
|
response.Fail("参数异常", c)
|
|
@@ -220,4 +220,33 @@ func RddpShareImg(c *gin.Context) {
|
|
|
imgUrl = defaultImg
|
|
|
}
|
|
|
response.OkData("获取成功", imgUrl, c)
|
|
|
-}
|
|
|
+}
|
|
|
+
|
|
|
+// ReportPptImgList 报告中的ppt图片列表
|
|
|
+func ReportPptImgList(c *gin.Context) {
|
|
|
+ reqReportId := c.DefaultQuery("report_id", "")
|
|
|
+ if reqReportId == "" {
|
|
|
+ response.Fail("请输入报告ID", c)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ reportId, err := strconv.Atoi(reqReportId)
|
|
|
+ if err != nil {
|
|
|
+ response.Fail("报告ID格式有误", c)
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ reqReportChapterId := c.DefaultQuery("report_chapter_id", "0")
|
|
|
+ reportChapterId, err := strconv.Atoi(reqReportChapterId)
|
|
|
+ if err != nil {
|
|
|
+ response.Fail("章节ID格式有误", c)
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ pptImgList, err := report.GetReportPptImgListByReportIdAndReportChapterId(reportId, reportChapterId)
|
|
|
+ if err != nil {
|
|
|
+ response.FailMsg("获取ppt图片成功", err.Error(), c)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ response.OkData("获取成功", pptImgList, c)
|
|
|
+ return
|
|
|
+}
|