Explorar el Código

update

master
shenjiachi hace 1 semana
padre
commit
ea050a2dec
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. +5
    -1
      app/svc/svc_points_center.go

+ 5
- 1
app/svc/svc_points_center.go Ver fichero

@@ -78,7 +78,11 @@ func GetEggPointRecordBase(now time.Time, uid int64, page int, limit int) ([]md.
results = append(results, doc)
}
}
nowScore = utils.Float64ToStr(results[0].ScoreValue)
if len(results) > 0 {
nowScore = utils.Float64ToStr(results[0].ScoreValue)
} else {
nowScore = "60"
}
} else {
nowScore = "60"
}


Cargando…
Cancelar
Guardar