浏览代码

update

tmp
shenjiachi 4 周前
父节点
当前提交
ea050a2dec
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. +5
    -1
      app/svc/svc_points_center.go

+ 5
- 1
app/svc/svc_points_center.go 查看文件

@@ -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"
}


正在加载...
取消
保存