From 4a1fc13a4fcc1a82ad850fdc23e50dd92c0f2dac Mon Sep 17 00:00:00 2001 From: tpingzhang <635929049@qq.com> Date: Fri, 22 Nov 2019 01:39:22 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A4=BC=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/default/GameGiftPage/receive.html | 28 +++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/Application/Sdk/View/default/GameGiftPage/receive.html b/Application/Sdk/View/default/GameGiftPage/receive.html index cf720a57..595235c2 100644 --- a/Application/Sdk/View/default/GameGiftPage/receive.html +++ b/Application/Sdk/View/default/GameGiftPage/receive.html @@ -63,12 +63,36 @@ arr.game_name = "{$game_name}"; $('.actbtn').on("click",function(){ - $.post("{:U('receive_gift')}",{ + $.ajax({ + type: "GET", + dataType: "json", + url: "{:U('receive_gift')}", + data: { + user_token : "{$user_token}", + gift_id : "{$gift_id}", + game_id : "{$game_id}", + game_name : "{$game_name}", + }, + success: function (r) { + if (r.code == 200) { + window.location.href = r.url; + } else { + if (r == "领取成功") { + window.location.href = "{:U('details',['user_token' => $user_token,'gift_id' => $gift_id,'game_id' => $game_id,'game_name' => $game_name])}"; + } + // alert(r.msg); + } + } + + }); + + /* $.post("{:U('receive_gift')}",{ user_token : "{$user_token}", gift_id : "{$gift_id}", game_id : "{$game_id}", game_name : "{$game_name}", },function(data,status){ + if(data == '领取成功') { window.location.href = "{:U('details',['user_token' => $user_token,'gift_id' => $gift_id,'game_id' => $game_id,'game_name' => $game_name])}"; @@ -77,7 +101,7 @@ window.location.href = data.url; } - }); + }); */ }) $("#hidedialog").on("click",function(){ $("#iosDialog").hide();