You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
3.9 KiB

  1. <!DOCTYPE html><html><head><meta http-equiv="content-type" content="text/html;charset=utf-8"/>
  2. <title>我的优惠券</title><meta name="keywords" content=""><meta name="description" content=""><meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" name="viewport">
  3. <link href="<?php echo env('APP_URL'); ?>/css/weixin/style.css" type="text/css" rel="stylesheet">
  4. <script type="text/javascript" src="<?php echo env('APP_URL'); ?>/js/jquery.min.js"></script>
  5. <script type="text/javascript" src="<?php echo env('APP_URL'); ?>/js/weixin/mobile.js"></script></head><body style="background-color:#f1f1f1;">
  6. <div class="classreturn loginsignup">
  7. <div class="ds-in-bl return"><a href="javascript:history.back(-1);"><img src="<?php echo env('APP_URL'); ?>/images/weixin/return.png" alt="返回"></a></div>
  8. <div class="ds-in-bl tit center"><span>我的优惠券</span></div>
  9. </div>
  10. <script type="text/javascript" src="<?php echo env('APP_URL'); ?>/js/layer/mobile/layer.js"></script>
  11. <style>
  12. .bonus_list .flow-have-adr{padding:10px;margin:10px;background-color:#fff;}
  13. .bonus_list .f-h-adr-title .ect-colory{color:#f45239;font-size:32px;}
  14. .bonus_list .f-h-adr-title label{font-size:18px;color:#2e2e2e;margin-right:5px;}
  15. .bonus_list .f-h-adr-con{color:#616161;margin-top:5px;margin-bottom:5px;font-size:14px;}
  16. .bonus_list .adr-edit-del{margin-top:10px;padding-top:8px;border-top:1px dashed #ddd;line-height:22px;color:#a0a0a0;font-size:14px;}
  17. </style>
  18. <div class="bonus_list">
  19. <?php if($list){foreach($list as $k=>$v){ ?>
  20. <div class="flow-have-adr">
  21. <p class="f-h-adr-title"><label><?php echo $v['bonus']['name']; ?></label><span class="ect-colory fr"><small>¥</small><?php echo $v['bonus']['money']; ?></span><div class="cl"></div></p>
  22. <p class="f-h-adr-con">有效期至<?php echo $v['bonus']['end_time']; ?> <span class="fr">满<?php echo $v['bonus']['min_amount']; ?>可用</span></p>
  23. <!-- <div class="adr-edit-del">说明</div> -->
  24. </div>
  25. <?php }} ?>
  26. </div>
  27. <script>
  28. $(function(){
  29. var ajaxload = false;
  30. var maxpage = false;
  31. var startpage = 1;
  32. var totalpage = <?php echo $totalpage; ?>;
  33. var tmp_url = window.location.href;
  34. msg = tmp_url.split("#");
  35. tmp_url = msg[0];
  36. $(window).scroll(function ()
  37. {
  38. var listheight = $(".bonus_list").outerHeight();
  39. if ($(document).scrollTop() + $(window).height() >= listheight)
  40. {
  41. if(startpage >= totalpage)
  42. {
  43. //$("#submit_bt_one").html("已是最后一页,没有更多数据!");
  44. return false;
  45. }
  46. if(!ajaxload && !maxpage)
  47. {
  48. ajaxload = true;
  49. //$("#submit_bt_one").html("努力加载中...");
  50. var url = tmp_url;
  51. var nextpage = startpage+1;
  52. $.get(url,{page_ajax:1,page:nextpage},function(res)
  53. {
  54. if(res)
  55. {
  56. $(".bonus_list").append(res);
  57. startpage++;
  58. if(startpage >= totalpage)
  59. {
  60. maxpage = true;
  61. //$("#submit_bt_one").html("已是最后一页,没有更多数据!");
  62. }
  63. else
  64. {
  65. //$("#submit_bt_one").html("点击加载更多");
  66. }
  67. ajaxload = false;
  68. }
  69. else
  70. {
  71. //$("#submit_bt_one").html("请求失败,请稍候再试!");
  72. ajaxload = false;
  73. }
  74. },'json');
  75. }
  76. }
  77. });
  78. });
  79. </script>
  80. @include('weixin.common.footer')
  81. </body></html>