|
@@ -21,6 +21,10 @@
|
|
|
var src = null;
|
|
|
var recordId = null;
|
|
|
$(function () {
|
|
|
+ //先在这里查看是否有id
|
|
|
+ if(id == null || id == undefined || id == ""){
|
|
|
+ window.location.href = "http://wx.ttkuaiban.com/minigame";
|
|
|
+ }
|
|
|
|
|
|
$.post("./user/getWxConfigParam?url=http://wx.ttkuaiban.com/minigame/lottery.html", {}, function(resp) {
|
|
|
if (resp.code == 'error') {
|
|
@@ -72,13 +76,7 @@
|
|
|
setPosition();
|
|
|
$(window).resize(function () {
|
|
|
setPosition();
|
|
|
- });
|
|
|
- //id设置进入localstorage
|
|
|
- localStorage.setItem("userId", id);
|
|
|
- //在这里查看是否有id
|
|
|
- if(id == null || id == undefined || id == ""){
|
|
|
- window.location.href = "http://wx.ttkuaiban.com/minigame";
|
|
|
- }
|
|
|
+ });
|
|
|
|
|
|
//获取
|
|
|
$.post("./prize/luckDrawList", {}, function(resp) {
|
|
@@ -146,6 +144,7 @@
|
|
|
//谢谢惠顾后点击的按钮
|
|
|
$(".result_failed_button").click(function () {
|
|
|
window.location.href = "index.html";
|
|
|
+ //这里需要检查一下还有没有剩余次数,如果没有的话直接关闭mask,alert可以分享增加次数
|
|
|
});
|
|
|
//领取奖品按钮
|
|
|
$(".result_success_button").click(function () {
|