Authored by lijing

修改

... ... @@ -30,6 +30,7 @@
var arr = data.data;
if (aArr[liNnm] === 0) {
aArr[liNnm] = 1;
opened(liNnm);
if (arr.prize == 1) {
var newCover = awaCover(arr.prizeRemark);
var res= addPrize(88,arr.id);
... ...
... ... @@ -96,3 +96,8 @@ function noAwa() {
'<div class="dia-bg"></div>'
return cHtml;
}
function opened(thisBox){
$(".a-box-ul li:eq("+ thisBox +")").find("img").remove();
$(".a-box-ul li:eq("+ thisBox +")").append("<img src='images/awa.png' />");
}
... ...