|
@@ -30,6 +30,7 @@ type ActivityNoLoginController struct {
|
|
|
|
|
|
// @Title 活动类型列表
|
|
// @Title 活动类型列表
|
|
// @Description活动类型列表接口
|
|
// @Description活动类型列表接口
|
|
|
|
+// @Param IsResearch query bool true "是否为研选"
|
|
// @Success 200 {object} models.ActivityTypeListResp
|
|
// @Success 200 {object} models.ActivityTypeListResp
|
|
// @router /activityTypelist [get]
|
|
// @router /activityTypelist [get]
|
|
func (this *ActivityCoAntroller) List() {
|
|
func (this *ActivityCoAntroller) List() {
|
|
@@ -46,7 +47,14 @@ func (this *ActivityCoAntroller) List() {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
resp := new(models.ActivityTypeListResp)
|
|
resp := new(models.ActivityTypeListResp)
|
|
- list, err := models.GetActivityTypeList()
|
|
|
|
|
|
+ isResearch, _ := this.GetBool("IsResearch", false)
|
|
|
|
+ var condition string
|
|
|
|
+
|
|
|
|
+ //是否仅展示研选下的活动类型
|
|
|
|
+ if isResearch {
|
|
|
|
+ condition = " AND source_type IN (0,2) "
|
|
|
|
+ }
|
|
|
|
+ list, err := models.GetActivityTypeList(condition)
|
|
if err != nil {
|
|
if err != nil {
|
|
br.Msg = "获取失败"
|
|
br.Msg = "获取失败"
|
|
br.ErrMsg = "获取数据失败,Err:" + err.Error()
|
|
br.ErrMsg = "获取数据失败,Err:" + err.Error()
|
|
@@ -1056,7 +1064,7 @@ func (this *ActivityCoAntroller) GetUserSearchContent() {
|
|
detail = detailSeearch
|
|
detail = detailSeearch
|
|
}
|
|
}
|
|
isShowJurisdiction, _ := this.GetInt("IsShowJurisdiction")
|
|
isShowJurisdiction, _ := this.GetInt("IsShowJurisdiction")
|
|
- listActivityType, errActivityType := models.GetActivityTypeList()
|
|
|
|
|
|
+ listActivityType, errActivityType := models.GetActivityTypeList("")
|
|
if errActivityType != nil {
|
|
if errActivityType != nil {
|
|
br.Msg = "获取失败"
|
|
br.Msg = "获取失败"
|
|
br.ErrMsg = "获取数据失败,Err:" + errActivityType.Error()
|
|
br.ErrMsg = "获取数据失败,Err:" + errActivityType.Error()
|
|
@@ -1936,7 +1944,7 @@ func (this *ActivityCoAntroller) ActivityListNew() {
|
|
}
|
|
}
|
|
//未开始进行中默认按照时间正序
|
|
//未开始进行中默认按照时间正序
|
|
if activeState == "1" || activeState == "1,2" || activeState == "" {
|
|
if activeState == "1" || activeState == "1,2" || activeState == "" {
|
|
- conditionOrder = ` ORDER BY art.activity_time ASC `
|
|
|
|
|
|
+ conditionOrder = ` ORDER BY art.top_time DESC , art.activity_time ASC `
|
|
}
|
|
}
|
|
//conditionActivityKey += condition + conditionOrder
|
|
//conditionActivityKey += condition + conditionOrder
|
|
condition += conditionOrder
|
|
condition += conditionOrder
|