123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>领取优惠券</title>
- <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1, user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <link rel="stylesheet" type="text/css" href="css/mui.min.css" />
- <link rel="stylesheet" type="text/css" href="css/iconfont.css" />
- <link rel="stylesheet" type="text/css" href="css/main.css" />
- <script type="text/javascript" src="//res.wx.qq.com/open/js/jweixin-1.1.0.js"></script>
- <script type="text/javascript">
-
- window.hiddenAllWechatMenu = true;
- </script>
- </head>
- <body>
-
-
- <div class="loading covers">
- <div class="loading-bj"></div>
- <p>正在加载...</p>
- </div>
-
- <script type="text/javascript" src="js/mui.min.js"></script>
- <script type="text/javascript" src="js/jquery-2.1.1.min.js"></script>
- <script type="text/javascript" src="js/main.js"></script>
- <script type="text/javascript">
-
- window.addEventListener('pageshow', function(e) {
-
- if(e.persisted) {
- location.reload();
- }
- });
-
- var notReceive=null;
-
- var couponId = getParam("couponId");
- var isFirst = getParam("isFirst");
-
- mui.ready(function(){
- if(isFirst != 1 ){
- location.href = "welfare-two-channel.html?couponId="+ couponId +"&isFirst="+ 1 +"&dates=" + new Date().getTime();
- return false;
- }
-
- console.log("页面加载完毕");
- $(".loading").hide().css("opacity", "0");
-
- receiceCoupon();
- });
-
-
- function receiceCoupon(){
- $.ajax(base_path + '/wechat/coupon/re_two_coupon?dates=' + new Date().getTime(), {
- data: {
- couponId : couponId
- },
- dataType: 'json',
- xhrFields: {
- withCredentials: true
- },
- crossDomain: true,
- type: 'get',
- timeout: 15000,
- success: function(dt) {
- if(dt.isRedirect) {
- location.href = dt.redirectURL;
- } else {
- if(dt.status) {
- mui.alert("领取成功!", function() {
- location.href = "index.html?dates=" + new Date().getTime();
- });
- return false;
- } else {
- if(dt.resultCode == "500" || dt.resultCode == "501" || dt.resultCode == "502" || dt.resultCode == "503"){
- mui.alert(dt.message, function() {
-
- WeixinJSBridge.call('closeWindow');
- wx.closeWindow();
- });
- return false;
- }else{
- var myjson = JSON.stringify(dt);
- mui.alert("领取失败!" + myjson);
- return false;
- }
- }
- }
- },
- error: function(xhr, type, errorThrown) {
- console.log(xhr);
- mui.alert("领取优惠券失败!网络错误");
- }
- });
-
- }
- </script>
- </body>
- </html>
|