广告平台(站长使用)
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

119 行
3.6 KiB

  1. package hdl
  2. import (
  3. "applet/app/e"
  4. "applet/app/lib/validate"
  5. "applet/app/md"
  6. "applet/app/svc"
  7. "applet/app/utils"
  8. "code.fnuoos.com/zhimeng/model.git/src/implement"
  9. "github.com/gin-gonic/gin"
  10. )
  11. // Base
  12. // @Summary 右上角基本数据
  13. // @Tags 首页------嘉俊
  14. // @Description 首页-右上角基本数据
  15. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  16. // @Accept json
  17. // @Produce json
  18. // @Success 200 {string} "具体看返回内容 这是data里面的数据"
  19. // @Failure 400 {object} md.Response "具体错误"
  20. // @Router /api/index/base [GET]
  21. func Base(c *gin.Context) {
  22. user := svc.GetUser(c)
  23. name := user.Username
  24. res := map[string]string{
  25. "account_id": utils.IntToStr(user.AdmId),
  26. "name": name,
  27. "is_super": "0",
  28. "account": user.Username,
  29. "logo": "",
  30. "memo": user.Memo,
  31. "label": "",
  32. "seo_logo": "",
  33. "seo_title": "",
  34. }
  35. if user.IsSuperAdministrator == 1 {
  36. res["is_super"] = "1"
  37. }
  38. NewAdminRoleDb := implement.NewAdminRoleDb(svc.MasterDb(c))
  39. role, _ := NewAdminRoleDb.GetAdminRoleByAdminId(user.AdmId)
  40. if role != nil {
  41. NewRoleDb := implement.NewRoleDb(svc.MasterDb(c), role.RoleId)
  42. getRole, _ := NewRoleDb.GetRole()
  43. if getRole != nil {
  44. res["logo"] = getRole.Logo
  45. res["label"] = getRole.Label
  46. res["seo_logo"] = getRole.SeoLogo
  47. res["seo_title"] = getRole.SeoTitle
  48. }
  49. }
  50. e.OutSuc(c, res, nil)
  51. return
  52. }
  53. // IndexTotal
  54. // @Summary 统计数据
  55. // @Tags 首页------嘉俊
  56. // @Description 首页-统计数据
  57. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  58. // @Accept json
  59. // @Produce json
  60. // @Success 200 {string} "具体看返回内容 这是data里面的数据"
  61. // @Failure 400 {object} md.Response "具体错误"
  62. // @Router /api/index/total [GET]
  63. func IndexTotal(c *gin.Context) {
  64. svc.IndexTotal(c)
  65. }
  66. // IndexAppList
  67. // @Summary 应用数据
  68. // @Tags 首页------嘉俊
  69. // @Description 首页-应用数据
  70. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  71. // @Accept json
  72. // @Produce json
  73. // @Param args body md.IndexAppListReq true "请求参数"
  74. // @Success 200 {object} md.IndexAppListRes "具体看返回内容 这是data里面的数据"
  75. // @Failure 400 {object} md.Response "具体错误"
  76. // @Router /api/index/app/list [POST]
  77. func IndexAppList(c *gin.Context) {
  78. var req md.IndexAppListReq
  79. err := c.ShouldBindJSON(&req)
  80. if err != nil {
  81. err = validate.HandleValidateErr(err)
  82. err1 := err.(e.E)
  83. e.OutErr(c, err1.Code, err1.Error())
  84. return
  85. }
  86. res := svc.IndexAppList(c, req)
  87. e.OutSuc(c, res, nil)
  88. return
  89. }
  90. // IndexAppListTable
  91. // @Summary 应用数据-每个应用的折线图
  92. // @Tags 首页------嘉俊
  93. // @Description 首页-应用数据-每个应用的折线图
  94. // @param Authorization header string true "验证参数Bearer和token空格拼接"
  95. // @Accept json
  96. // @Produce json
  97. // @Param args body md.IndexAppListTableReq true "请求参数"
  98. // @Success 200 {string} "具体看返回内容 "
  99. // @Failure 400 {object} md.Response "具体错误"
  100. // @Router /api/index/app/list/table [POST]
  101. func IndexAppListTable(c *gin.Context) {
  102. var req md.IndexAppListTableReq
  103. err := c.ShouldBindJSON(&req)
  104. if err != nil {
  105. err = validate.HandleValidateErr(err)
  106. err1 := err.(e.E)
  107. e.OutErr(c, err1.Code, err1.Error())
  108. return
  109. }
  110. res := svc.BeforeSevenPoint(c, req)
  111. e.OutSuc(c, res, nil)
  112. return
  113. }