Няма описание
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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. </head>
  16. <body>
  17. <div class="container" style="text-align: center;">
  18. <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;"/>
  19. <br/>
  20. 支付提示:<span id="query_result" style="color: red">请扫码二维码进行支付...</span>
  21. </div>
  22. <input id="unified_number" type="hidden" value="{$unified_number}">
  23. <input id="transaction_type" type="hidden" value="{$transaction_type}">
  24. <input id="WeChatUrl" type="hidden" value="{$WeChatUrl}">
  25. <script type="text/javascript">
  26. var t1;
  27. var sum = 0;
  28. $(document).ready(function () {
  29. var WeChatUrl = $('#WeChatUrl').val();
  30. if (WeChatUrl) {
  31. t1 = setInterval("ajaxstatus()", 1500);
  32. }else{
  33. t1 = setInterval("ajaxstatus()", 3000);
  34. }
  35. });
  36. function ajaxstatus() {
  37. sum++;
  38. if(sum > 600){
  39. window.clearInterval(t1);
  40. return false;
  41. }
  42. if(sum > 180){
  43. m = sum % 10;
  44. if(m != 0){
  45. return false;
  46. }
  47. }
  48. var unified_number = $("#unified_number").val();
  49. var transaction_type = $('#transaction_type').val();
  50. var WeChatUrl = $('#WeChatUrl').val();
  51. if (!WeChatUrl) {
  52. WeChatUrl = "{eyou:url link='user/Pay/pay_deal_with' vars='_ajax=1'/}";
  53. }
  54. if (unified_number != 0) {
  55. $.ajax({
  56. url: WeChatUrl,
  57. data: {unified_number:unified_number,transaction_type:transaction_type},
  58. type:'post',
  59. dataType:'json',
  60. success:function(res){
  61. if (0 == res.data.status) {
  62. $("#query_result").html(res.msg);
  63. } else if (1 == res.data.status) {
  64. $("#query_result").html(res.msg);
  65. layer.msg(res.msg, {time: 1000}, function(){
  66. top.location.href = res.url;
  67. });
  68. } else if (2 == res.data.status) {
  69. $("#query_result").html(res.msg);
  70. }
  71. }
  72. });
  73. }
  74. }
  75. </script>
  76. </body>
  77. </html>