|
@@ -26,7 +26,7 @@
|
|
//id设置进入localstorage
|
|
//id设置进入localstorage
|
|
localStorage.setItem("userId", id);
|
|
localStorage.setItem("userId", id);
|
|
//在这里查看是否有id
|
|
//在这里查看是否有id
|
|
- if(id == null){
|
|
|
|
|
|
+ if(id == null || id == undefined || id == ""){
|
|
window.location.href = "http://wx.ttkuaiban.com/minigame";
|
|
window.location.href = "http://wx.ttkuaiban.com/minigame";
|
|
}
|
|
}
|
|
|
|
|
|
@@ -61,6 +61,7 @@
|
|
//设置要中奖的位置 1.5没有 0十二瓶 4一升 2.6五百毫升 3书 7肥皂
|
|
//设置要中奖的位置 1.5没有 0十二瓶 4一升 2.6五百毫升 3书 7肥皂
|
|
if(resp.data.prizeLevel == -1){
|
|
if(resp.data.prizeLevel == -1){
|
|
var rand = Math.round(Math.random()*2);
|
|
var rand = Math.round(Math.random()*2);
|
|
|
|
+ console.log(rand);
|
|
if(rand <= 1){
|
|
if(rand <= 1){
|
|
threshold = 1;
|
|
threshold = 1;
|
|
}else{
|
|
}else{
|