{{i}}
{{n}}
{{c}}
当前有{{numOfPeople}}人参与
前
{{roomInfo.awardUser}}
名有奖,总奖金
{{roomInfo.awardFee}}
元
抢奖金倒计时
{{countDown}}
秒
{{invite.shareButton}}
{{invite.shareTips1}}
{{invite.shareTips2}}
前
{{roomInfo.awardUser}}
名有奖,总奖金
{{roomInfo.awardFee}}
元
{{question.t}}
{{question.n}}
{{question.n}}
第 {{questionNum}}/{{roomInfo.questionC}} 题
{{answer.tips}}:{{countDown}}秒
{{question.q}}
{{question.o[0]}}
{{question.o[1]}}
{{question.o[2]}}
{{question.o[3]}}
{{result.tips}}
奖金
{{result.bonus}}
元
已存入你的奖金账户
{{result.shareButton}}
{{result.shareTips}}
+{{share.bonus}}
+{{tools.addCell(share.cell)}}
{{tools.addCellUnit(share.cell)}}
我
{{selfRanking.rank}}
{{selfRanking.name}}
{{selfRanking.count}}
+{{answer.integral}}积分
var addCell = function(cell) {
if (cell >= 10000) {
return cell / 10000
}
return cell
}
var addCellUnit = function(cell) {
if (cell >= 10000) {
return '亿'
}
return '万'
}
module.exports.addCell = addCell
module.exports.addCellUnit = addCellUnit