厨房:修复没有中奖用户问题
This commit is contained in:
@@ -417,7 +417,7 @@ const renderDrawInfo = () => {
|
||||
$('.top-three span').html('本轮第一名')
|
||||
topThreeArr.map((item) => {
|
||||
str += `
|
||||
<p><img src="${item}" alt=""></p>
|
||||
<p><img src="${item.avatar}" alt=""></p>
|
||||
`
|
||||
})
|
||||
$('.top-three-list').html(str)
|
||||
@@ -426,7 +426,7 @@ const renderDrawInfo = () => {
|
||||
$('.top-three span').html('本轮前两名')
|
||||
topThreeArr.map((item) => {
|
||||
str += `
|
||||
<p><img src="${item}" alt=""></p>
|
||||
<p><img src="${item.avatar}" alt=""></p>
|
||||
`
|
||||
})
|
||||
$('.top-three-list').html(str)
|
||||
@@ -435,7 +435,7 @@ const renderDrawInfo = () => {
|
||||
$('.top-three span').html('本轮前三名')
|
||||
topThreeArr.map((item) => {
|
||||
str += `
|
||||
<p><img src="${item}" alt=""></p>
|
||||
<p><img src="${item.avatar}" alt=""></p>
|
||||
`
|
||||
})
|
||||
$('.top-three-list').html(str)
|
||||
|
Reference in New Issue
Block a user