|
@@ -1,6 +1,7 @@
|
|
|
package controllers
|
|
|
|
|
|
import (
|
|
|
+ "fmt"
|
|
|
"hongze/hongze_api/models"
|
|
|
"html"
|
|
|
)
|
|
@@ -17,6 +18,7 @@ type ReportShareController struct {
|
|
|
// @Success 200 {object} models.ReportShareDetailResp
|
|
|
// @router /share/detail [get]
|
|
|
func (this *ReportShareController) Detail() {
|
|
|
+ fmt.Println("sssssssssss")
|
|
|
br := new(models.BaseResponse).Init()
|
|
|
defer func() {
|
|
|
this.Data["json"] = br
|
|
@@ -24,7 +26,8 @@ func (this *ReportShareController) Detail() {
|
|
|
}()
|
|
|
|
|
|
reportCode:= this.GetString("ReportCode")
|
|
|
-
|
|
|
+ fmt.Println("reportCode")
|
|
|
+ fmt.Println(reportCode)
|
|
|
if reportCode =="" {
|
|
|
br.Msg = "参数错误"
|
|
|
br.ErrMsg = "参数错误,reportCode 为空"
|