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_account_recharge.htm 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  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. <link href="{eyou:global name='web_cmspath'/}/favicon.ico" rel="shortcut icon" type="image/x-icon" />
  10. {eyou:static file="users/skin/css/basic.css" /}
  11. {eyou:static file="users/skin/css/eyoucms.css" /}
  12. {eyou:static file="users/skin/css/element/index.css" /}
  13. {eyou:static file="users/skin/css/e-user.css" /}
  14. {eyou:include file="users/skin/css/diy_css.htm" /}
  15. {eyou:static file="/public/static/common/js/jquery.min.js"/}
  16. {eyou:static file="/public/plugins/layer-v3.1.0/layer.js"/}
  17. {eyou:static file="users/skin/js/global.js"/}
  18. {eyou:static file="/public/static/common/js/mobile_global.js"/}
  19. </head>
  20. <body>
  21. <div class="ey-header-status">
  22. <div class="header-status-l"><a href="javascript:history.go(-1);"><i class="el-icon-arrow-left"></i></a></div>
  23. <div class="header-status-m">账户充值</div>
  24. <div class="header-status-r"><a href="{eyou:url link='user/Pay/pay_consumer_details' /}" class="addr_z ml10">明细</a></div>
  25. </div>
  26. <div class="h50"></div>
  27. <div class="ey-container">
  28. <div class="ey-con">
  29. <form id="postForm">
  30. <div class="ey-row">
  31. <div class="balance">
  32. <i class="m-pay-def-pay"></i>
  33. <p class="title">账户余额(元)</p>
  34. <p class="money">{$users.users_money}</p>
  35. </div>
  36. </div>
  37. <div class="ey-row">
  38. <div class="recharge-box">
  39. <div class="recharge-box-title">充值金额</div>
  40. <div class="recharge-box-con">
  41. <i>¥</i>
  42. <input type="text" class="el-input__inner" onkeyup="this.value=this.value.replace(/[^0-9\.]/g,'');" onafterpaste="this.value=this.value.replace(/[^0-9\.]/g,'');" name="money" value="{$money}" placeholder="输入充值金额">
  43. </div>
  44. </div>
  45. </div>
  46. <div class="ey-row mt10 pt0 pb0 ">
  47. <div class="item-from-row recharge-method bgfff border-b-no" id="div_zhifufangshi" style="display: none;">
  48. <div class="from-row-r wb100">
  49. <!-- 支付API列表,套板请务必将整块代码一起复制,包含隐藏域 -->
  50. {eyou:sppayapilist id='vo'}
  51. {eyou:notempty name="$vo.pay_id"}
  52. <label class="radio-label pt10 pb10 radio-label-flex pl0 mb0 e-label {eq name='$key' value='0'} active {/eq}" data-type="zxzf_{$vo.pay_mark}">
  53. <span><img class="pay_img" src="{$vo.pay_img}" alt="{$vo.pay_name}">{$vo.pay_name} </span>
  54. <input class="radio" type="radio" name='pay_id' value="{$vo.pay_id}" {eq name='$key' value='0'} checked="checked" {/eq}>
  55. <span class="check-mark ri0"></span>
  56. <input type="hidden" name='pay_mark[{$vo.pay_id}]' value="{$vo.pay_mark}">
  57. </label>
  58. {/eyou:notempty}
  59. {$vo.hidden}
  60. {/eyou:sppayapilist}
  61. <input type="hidden" id="PayID">
  62. <input type="hidden" id="PayMark">
  63. <script type="text/javascript">
  64. $(function(){
  65. if ($('#div_zhifufangshi').find('.radio-label').length > 0) $('#div_zhifufangshi').show();
  66. });
  67. </script>
  68. <!-- END -->
  69. </div>
  70. </div>
  71. <div class="public-btn">
  72. <input type="hidden" name="payment_type" >
  73. <input type="hidden" name="unified_number" value="{$unified_number}">
  74. <a href="JavaScript:void(0);" id="pay_btn" onclick="pay_money();">立即支付</a>
  75. </div>
  76. </div>
  77. </form>
  78. </div>
  79. <input type="hidden" id="unified_id">
  80. <input type="hidden" id="unified_number">
  81. <input type="hidden" id="transaction_type">
  82. </div>
  83. {eyou:static file="users/skin/js/pay_account_recharge.js" /}
  84. <script type="text/javascript">
  85. $(function(){
  86. $('input[name=money]').focus();
  87. // 默认支付方式
  88. var default_payment_type = $('#div_zhifufangshi .radio-label').attr('data-type');
  89. $('input[name=payment_type]').val(default_payment_type);
  90. // 支付类型选择
  91. $('#div_zhifufangshi .radio-label').click(function(){
  92. $('input[name=payment_type]').val($(this).data('type'));
  93. });
  94. wx.miniProgram.getEnv( function(res) {
  95. if(res.miniprogram) {
  96. // 小程序
  97. var i = 0;
  98. i = setInterval('AppletsPay()', 1000);
  99. }
  100. });
  101. });
  102. // 小程序后查询
  103. function AppletsPay(){
  104. var unified_id = $('#unified_id').val();
  105. var unified_number = $('#unified_number').val();
  106. var transaction_type = $('#transaction_type').val();
  107. if (unified_id && unified_number && transaction_type) {
  108. $.ajax({
  109. url: "{eyou:url link='user/Pay/ajax_applets_pay'/}",
  110. data: {unified_id:unified_id, unified_number:unified_number, transaction_type:transaction_type},
  111. type:'post',
  112. dataType:'json',
  113. success:function(res){
  114. if (1 == res.code) {
  115. window.location.href = res.url;
  116. }
  117. }
  118. });
  119. }
  120. }
  121. function pay_money() {
  122. var money = $('input[name=money]');
  123. if($.trim(money.val()) == ''){
  124. showLayerMsg('充值金额不能为空');
  125. money.focus();
  126. return false;
  127. } else if (isNaN($.trim(money.val()))) {
  128. showLayerMsg('请输入正确的充值金额');
  129. money.focus();
  130. return false;
  131. }
  132. if ($('input[name=payment_type]').val() == '') {
  133. showLayerMsg('请选择支付方式');
  134. return false;
  135. }
  136. showLayerLoad();
  137. $.ajax({
  138. async: false,
  139. url : "{:url('user/Pay/pay_account_recharge', ['version'=>'v2', '_ajax'=>1])}",
  140. data: $('#postForm').serialize(),
  141. type: 'post',
  142. dataType: 'json',
  143. success: function(res) {
  144. layer.closeAll();
  145. if (res.code == 1) {
  146. if (0 == res.data.is_gourl) {
  147. $('#unified_id').val(res.data.unified_id);
  148. $('#unified_number').val(res.data.unified_number);
  149. $('#transaction_type').val(res.data.transaction_type);
  150. WeChatInternal(res.data);
  151. } else {
  152. SelectPayMethod_2(res.data.pay_id, res.data.pay_mark, res.data.unified_id, res.data.unified_number, res.data.transaction_type);
  153. }
  154. }else{
  155. layer.closeAll();
  156. showErrorAlert(res.msg);
  157. }
  158. },
  159. error : function(e) {
  160. layer.closeAll();
  161. showErrorAlert(e.responseText);
  162. }
  163. });
  164. }
  165. // 微信内部中进行支付
  166. function WeChatInternal(wechatdata)
  167. {
  168. wx.miniProgram.getEnv( function(res) {
  169. if(res.miniprogram) {
  170. // 小程序
  171. wx.miniProgram.navigateTo({
  172. url: '/pages/pay/pay?unified_id='+ wechatdata['unified_id'] +'&unified_number=' + wechatdata['unified_number'] + '&type=' + wechatdata['transaction_type']
  173. });
  174. } else {
  175. // 微信端
  176. $.ajax({
  177. url: "{eyou:url link='user/Pay/wechat_pay'/}",
  178. data: wechatdata,
  179. type:'post',
  180. dataType:'json',
  181. success:function(res){
  182. if (1 == res.code) {
  183. callpay(res.msg);
  184. }else{
  185. showErrorAlert(res.msg, 0);
  186. }
  187. }
  188. });
  189. }
  190. });
  191. }
  192. //调用微信JS api 支付
  193. function jsApiCall(data)
  194. {
  195. WeixinJSBridge.invoke(
  196. 'getBrandWCPayRequest',data,
  197. function(res){
  198. if(res.err_msg == "get_brand_wcpay_request:ok"){
  199. layer.msg('微信支付完成!', {time: 1000}, function(){
  200. pay_deal_with();
  201. });
  202. }else if(res.err_msg == "get_brand_wcpay_request:cancel"){
  203. layer.msg('用户取消支付!', {time: 1000}, function(){
  204. window.location.reload();
  205. });
  206. }else{
  207. showErrorAlert('支付失败!', 0);
  208. }
  209. }
  210. );
  211. }
  212. // 微信内部支付时,先进行数据判断
  213. function callpay(data)
  214. {
  215. if (typeof WeixinJSBridge == "undefined"){
  216. if( document.addEventListener ){
  217. document.addEventListener('WeixinJSBridgeReady', jsApiCall, false);
  218. }else if (document.attachEvent){
  219. document.attachEvent('WeixinJSBridgeReady', jsApiCall);
  220. document.attachEvent('onWeixinJSBridgeReady', jsApiCall);
  221. }
  222. }else{
  223. jsApiCall(data);
  224. }
  225. }
  226. function pay_deal_with(){
  227. var unified_number = $('#unified_number').val();
  228. var transaction_type = $('#transaction_type').val();
  229. $.ajax({
  230. url: "{eyou:url link='user/Pay/pay_deal_with'/}",
  231. data: {unified_number:unified_number,transaction_type:transaction_type},
  232. type:'post',
  233. dataType:'json',
  234. success:function(res){
  235. if (1 == res.data.status) {
  236. window.location.href = res.url;
  237. }
  238. }
  239. });
  240. }
  241. </script>
  242. </body>
  243. </html>