|
@@ -47,7 +47,7 @@ func (c *intelligentLightingCtl) List(ctx *gin.Context) {
|
|
|
size, _ := strconv.Atoi(ctx.Query("size"))
|
|
|
gId, err := strconv.Atoi(groupId)
|
|
|
if err != nil {
|
|
|
- ctx.JSON(http.StatusOK, common.ParamsInvalidResponse("groupId invalid", nil))
|
|
|
+ ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, "分组没选 "))
|
|
|
return
|
|
|
}
|
|
|
if current == 0 {
|
|
@@ -61,6 +61,7 @@ func (c *intelligentLightingCtl) List(ctx *gin.Context) {
|
|
|
ctx.JSON(http.StatusOK, err)
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
pages := math.Ceil(float64(len(strategies)) / float64(size))
|
|
|
rsp := model.RspIntelligentLightList{
|
|
|
Current: current,
|