厨房:修复没有中奖用户问题
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)
|
||||
@@ -593,7 +593,7 @@ $(function () {
|
||||
sessionStorage.setItem("mySelect", $(this).index())
|
||||
})
|
||||
// 点击更多按钮
|
||||
$('.wrap .previous-result .more').click(function(){
|
||||
$('.wrap .previous-result .more').click(function () {
|
||||
window.location.href = './result.html?roundId=' + roundId
|
||||
})
|
||||
// 监听规则按钮点击事件
|
||||
|
Reference in New Issue
Block a user