diff --git a/view/peko/modules/noble/js/index.js b/view/peko/modules/noble/js/index.js index 55f892b..aad5fde 100644 --- a/view/peko/modules/noble/js/index.js +++ b/view/peko/modules/noble/js/index.js @@ -88,7 +88,7 @@ function getListRank () {
  • ${i + 4}
    - +
    ${res.nick.length > 5 ? res.nick.slice(0, 5) + '...' : res.nick}

    ${res.score > 10000 ? (Math.floor(res.score / 1000) / 10).toFixed(1) + 'w' : res.score}

    @@ -99,6 +99,7 @@ function getListRank () { }); $('.list').append(str); var res = res.data.myRank; + console.log(res); //自己 $('.myInfo .div .tx').attr('src', res.avatar); $('.myInfo .div .name').text(res.nick.length > 5 ? res.nick.slice(0, 5) + '...' : res.nick);