|
@@ -118,17 +118,28 @@ func (this *BannerController) ListYx() {
|
|
|
resp := new(models.BannerUrlYxListResp)
|
|
|
var listA []*models.BannerUrlYxResp
|
|
|
var listB []*models.BannerUrlYxResp
|
|
|
- listA = []*models.BannerUrlYxResp{
|
|
|
- &models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/1.png", Path: "pages-purchaser/leaflet/leaflet?leafletImage=https%3A%2F%2Fhzstatic.hzinsights.com%2Fcygx%2Fconfig%2Fresearch_11_0.png"},
|
|
|
- &models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/2.png", Path: "pages-purchaser/survey/surveySubmit"},
|
|
|
- //&models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/4.png", Path: "pages-purchaser/specialColumn/specialColumn"},
|
|
|
- &models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/3_long.png", Path: "pages-purchaser/researchList/researchList"},
|
|
|
- }
|
|
|
|
|
|
- listB = []*models.BannerUrlYxResp{
|
|
|
- //&models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/3.png", Path: "pages-purchaser/researchList/researchList"},
|
|
|
- &models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/4_short.png", Path: "pages-purchaser/specialColumn/specialColumn"},
|
|
|
+ if utils.RunMode == "release" {
|
|
|
+ listA = []*models.BannerUrlYxResp{
|
|
|
+ &models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/1.png", Path: "pages-purchaser/leaflet/leaflet?leafletImage=https%3A%2F%2Fhzstatic.hzinsights.com%2Fcygx%2Fconfig%2Fresearch_11_0.png"},
|
|
|
+ &models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/2.png", Path: "pages-purchaser/survey/surveySubmit"},
|
|
|
+ //&models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/4.png", Path: "pages-purchaser/specialColumn/specialColumn"},
|
|
|
+ &models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/3_long.png", Path: "pages-purchaser/researchList/researchList"},
|
|
|
+ }
|
|
|
+ listB = []*models.BannerUrlYxResp{
|
|
|
+ //&models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/3.png", Path: "pages-purchaser/researchList/researchList"},
|
|
|
+ &models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/4_short.png", Path: "pages-purchaser/specialColumn/specialColumn"},
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ listA = []*models.BannerUrlYxResp{
|
|
|
+ &models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/1.png", Path: "pages-purchaser/leaflet/leaflet?leafletImage=https%3A%2F%2Fhzstatic.hzinsights.com%2Fcygx%2Fconfig%2Fresearch_11_0.png"},
|
|
|
+ &models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/2.png", Path: "pages-purchaser/survey/surveySubmit"},
|
|
|
+ }
|
|
|
+ listB = []*models.BannerUrlYxResp{
|
|
|
+ &models.BannerUrlYxResp{IndexImg: "https://hzstatic.hzinsights.com/banner/yx/3.png", Path: "pages-purchaser/researchList/researchList"},
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
resp.ListA = listA
|
|
|
resp.ListB = listB
|
|
|
br.Ret = 200
|