rdluck 4 年之前
父节点
当前提交
f48a76ec31
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      controllers/report_share.go

+ 4 - 1
controllers/report_share.go

@@ -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 为空"