星际厨房:删除‘今日奖励’字段

This commit is contained in:
qf
2022-12-12 18:14:56 +08:00
parent cbe898e693
commit 5db592946c

View File

@@ -736,7 +736,8 @@ const renderMyInfo = () => {
} else {
num = myInfoD.num
}
$('.mine-diamond-num').html('今日獎勵' + num)
// $('.mine-diamond-num').html('今日獎勵' + num)
$('.mine-diamond-num').html(num)
} else {
let erbanNo = myInfoN.erbanNo
let myIndex = rankListN.findIndex((item, index) => {
@@ -819,7 +820,7 @@ const renderRankList = () => {
<img src="${item.avatar}" alt="">
<span class="others-nick">${item.nick.length > 5 ? item.nick.slice(0, 5) + '...' : item.nick}</span>
</div>
<span class="others-diamond-num">今日獎勵${num}</span>
<span class="others-diamond-num">${num}</span>
</li>
`
})