Commit eb0562d0 by 胡畅

fix

parent 455390c5
......@@ -335,7 +335,8 @@ function getRangeList(rankListData){
// $('.number',tr).text(i+1);
$('.number',tr).text(rankListData.records[i].ranking);
// 前三名有特殊图标
if(i < 3) {
// if(i < 3) {
if(rankListData.records[i].ranking < 4) {
$('.number',tr).removeClass().addClass('number ' + ('badge-no'+(i+1)));
} else {
$('.number',tr).removeClass().addClass('number');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment