shenjiachi 2週間前
コミット
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"
}


読み込み中…
キャンセル
保存