Pārlūkot izejas kodu

fix:跳转url调整

Roc 2 gadi atpakaļ
vecāks
revīzija
f8c61a9368
2 mainītis faili ar 16 papildinājumiem un 13 dzēšanām
  1. 3 3
      logic/report.go
  2. 13 10
      utils/config.go

+ 3 - 3
logic/report.go

@@ -114,7 +114,7 @@ func GetReportList(classifyId int, mobile, keyword string, startSize, pageSize i
 		postData["nonce_str"] = nonceStr
 		postData["timestamp"] = timeUnix
 		sign := utils.GetSign(postData)
-		v.HttpUrl = utils.ResearchReportUrl + "hzsl/report/new/detail?" + parameter + "&sign=" + sign
+		v.HttpUrl = utils.NewResearchReportUrl + "hzsl/report/new/detail?" + parameter + "&sign=" + sign
 	}
 	return
 }
@@ -282,7 +282,7 @@ func GetReportDetail(reportId int, mobile string) (reportDetail reportResp.Repor
 		postData["nonce_str"] = nonceStr
 		postData["timestamp"] = timeUnix
 		sign := utils.GetSign(postData)
-		v.HttpUrl = utils.ResearchReportUrl + "hzsl/report/new/chapter/detail?" + parameter + "&sign=" + sign
+		v.HttpUrl = utils.NewResearchReportUrl + "hzsl/report/new/chapter/detail?" + parameter + "&sign=" + sign
 	}
 
 	reportDetail.ReportInfo = reportItem
@@ -611,7 +611,7 @@ func GetMenuChapter(reportId int, typeIds []int, classifyNameFirst string, repor
 						PcSelectedThumb:        typeItem.PcSelectedImage,
 						PcUnselectedThumb:      typeItem.PcUnselectedImage,
 						Sort:                   typeItem.Sort,
-						HttpUrl:                utils.ResearchReportUrl + "hzsl/report/new/chapter/detail?" + parameter + "&sign=" + sign,
+						HttpUrl:                utils.NewResearchReportUrl + "hzsl/report/new/chapter/detail?" + parameter + "&sign=" + sign,
 					}
 
 					reportTypeList = append(reportTypeList, temp)

+ 13 - 10
utils/config.go

@@ -21,16 +21,17 @@ var (
 var ApiLog *log.Log
 
 var (
-	Bucketname        string = "hongze"
-	Endpoint          string
-	Imghost           string = "https://hongze.oss-accelerate.aliyuncs.com/"
-	Upload_dir        string = "static/images/"
-	Upload_Audio_Dir  string = "static/audio/"
-	AccessKeyId       string = "LTAIFMZYQhS2BTvW"
-	AccessKeySecret   string = "12kk1ptCHoGWedhBnKRVW5hRJzq9Fq"
-	ResearchReportUrl        = "" //全局加密KEY
-	ReportAppid       string
-	ReportSecret      string
+	Bucketname           string = "hongze"
+	Endpoint             string
+	Imghost              string = "https://hongze.oss-accelerate.aliyuncs.com/"
+	Upload_dir           string = "static/images/"
+	Upload_Audio_Dir     string = "static/audio/"
+	AccessKeyId          string = "LTAIFMZYQhS2BTvW"
+	AccessKeySecret      string = "12kk1ptCHoGWedhBnKRVW5hRJzq9Fq"
+	ResearchReportUrl           = "" //旧版报告的跳转地址
+	NewResearchReportUrl        = "" //新版报告的跳转地址
+	ReportAppid          string
+	ReportSecret         string
 )
 
 //全时会议账号信息
@@ -89,11 +90,13 @@ func init() {
 		logDir := `/data/rdlucklog/hongze_open_api`
 		ApiLog = log.Init("20060102.api", logDir)
 		ResearchReportUrl = "https://details.hzinsights.com/"
+		NewResearchReportUrl = "https://details.hzinsights.com/"
 		ReportAppid = "CQWx3EqDLNk7bVHo"                  //Appid
 		ReportSecret = "vRVFCk182Hpv8CyrHsxaHhA3CgGhh4Uu" //AppSecret
 	} else {
 		ApiLog = log.Init("20060102.api")
 		ResearchReportUrl = "http://advisoryadmin.brilliantstart.cn/xcx_h5/"
+		NewResearchReportUrl = "http://xcxh5test.hzinsights.com/xcx_h5/"
 		ReportAppid = "VH2ou4EKlYZz58Uj"                  //Appid
 		ReportSecret = "Q6Y5vwmx1IAA9OPkobl8qWvrnV7dGJ4k" //AppSecret
 	}