完成关卡人数

dev_aliyun2
daiao 5 years ago committed by harry
parent f253a53bfa
commit 538a66ec37

@ -17,9 +17,10 @@ if @challenges.present?
json.name challenge.subject
json.score challenge.score
#json.passed_count @pass_games_map.fetch(challenge.id, 0)
json.passed_count challenge.user_passed_count
user_passed_count = challenge.user_passed_count
json.passed_count user_passed_count
#json.playing_count @play_games_map.fetch(challenge.id, 0)
json.playing_count challenge.playing_count
json.playing_count (challenge.games.count - user_passed_count)
json.name_url shixun_challenge_path(challenge, shixun_identifier: @shixun.identifier)
json.open_game challenge.open_game(@shixun)
#json.open_game challenge.open_game(@shixun, @user.id)

Loading…
Cancel
Save