No Description
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.

pay_wechat.htm 3.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>微信支付-{eyou:global name='web_name' /}</title>
  6. <meta name="renderer" content="webkit">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  8. <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
  9. {eyou:static file="users/skin/css/basic.css" /}
  10. {eyou:static file="users/skin/css/eyoucms.css" /}
  11. {eyou:include file="users/skin/css/diy_css.htm" /}
  12. {eyou:static file="/public/static/common/js/jquery.min.js"/}
  13. {eyou:static file="/public/plugins/layer-v3.1.0/layer.js"/}
  14. {eyou:static file="users/skin/js/global.js" /}
  15. {eyou:static file="/public/static/common/js/mobile_global.js"/}
  16. </head>
  17. <body>
  18. <div class="container" style="text-align: center;">
  19. <img alt="二维码" src="{eyou:url link='user/Pay/pay_wechat_png' vars='unified_number=$unified_number&transaction_type=$transaction_type' /}" style="width:250px;height:250px;"/>
  20. <br/>
  21. 支付提示:<span id="query_result" style="color: red">请扫码二维码进行支付...</span>
  22. </div>
  23. <input id="unified_number" type="hidden" value="{$unified_number}">
  24. <input id="transaction_type" type="hidden" value="{$transaction_type}">
  25. <input id="WeChatUrl" type="hidden" value="{$WeChatUrl}">
  26. <script type="text/javascript">
  27. var t1;
  28. var sum = 0;
  29. $(document).ready(function () {
  30. var WeChatUrl = $('#WeChatUrl').val();
  31. if (WeChatUrl) {
  32. t1 = setInterval("ajaxstatus()", 1500);
  33. }else{
  34. t1 = setInterval("ajaxstatus()", 3000);
  35. }
  36. });
  37. function ajaxstatus() {
  38. sum++;
  39. if(sum > 600){
  40. window.clearInterval(t1);
  41. return false;
  42. }
  43. if(sum > 180){
  44. m = sum % 10;
  45. if(m != 0){
  46. return false;
  47. }
  48. }
  49. var unified_number = $("#unified_number").val();
  50. var transaction_type = $('#transaction_type').val();
  51. var WeChatUrl = $('#WeChatUrl').val();
  52. if (!WeChatUrl) {
  53. WeChatUrl = "{eyou:url link='user/Pay/pay_deal_with' vars='_ajax=1'/}";
  54. }
  55. if (unified_number != 0) {
  56. $.ajax({
  57. url: WeChatUrl,
  58. data: {unified_number:unified_number,transaction_type:transaction_type},
  59. type:'post',
  60. dataType:'json',
  61. success:function(res){
  62. if (0 == res.data.status) {
  63. $("#query_result").html(res.msg);
  64. } else if (1 == res.data.status) {
  65. $("#query_result").html(res.msg);
  66. layer.msg(res.msg, {time: 1000}, function(){
  67. top.location.href = res.url;
  68. });
  69. } else if (2 == res.data.status) {
  70. $("#query_result").html(res.msg);
  71. }
  72. }
  73. });
  74. }
  75. }
  76. </script>
  77. </body>
  78. </html>