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.

shop_wechat_pay_select.htm 9.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  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:include file="users/skin/css/diy_css.htm" /}
  13. {eyou:static file="/public/static/common/js/jquery.min.js"/}
  14. {eyou:static file="/public/plugins/layer-v3.1.0/layer.js"/}
  15. {eyou:static file="/public/static/common/js/tag_global.js"/}
  16. {eyou:static file="/public/static/common/js/mobile_global.js"/}
  17. </head>
  18. <body class="reg">
  19. <div class="register_index ey-member">
  20. <div class="container">
  21. <input type="hidden" id="unified_id" value='{$eyou.field.unified_id}'>
  22. <input type="hidden" id="unified_number" value='{$eyou.field.unified_number}'>
  23. <input type="hidden" id="transaction_type" value='{$eyou.field.transaction_type}'>
  24. <input type="hidden" id="order_source" value="{$eyou.field.order_source}">
  25. 商品价格:{$eyou.field.order_total_amount} &nbsp; &nbsp; &nbsp; &nbsp; 余额:{$users.users_money}
  26. {eyou:notempty name='$users.open_id'}
  27. <button class="btn btn-lg btn-primary btn-block" style="width: 100%;" onclick="WeChatInternal(this);" >
  28. 微信支付
  29. </button>
  30. {/eyou:notempty}
  31. <br/>
  32. <button class="btn btn-lg btn-primary btn-block" style="width: 100%;" id="BalancePayment" onclick="BalancePayment(this);">
  33. 余额支付
  34. </button>
  35. </div>
  36. </div>
  37. <script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></script>
  38. <script type="text/javascript">
  39. $(function(){
  40. wx.miniProgram.getEnv( function(res) {
  41. if(res.miniprogram) {
  42. // 小程序
  43. var i = 0;
  44. i = setInterval('AppletsPay()', 1000);
  45. }
  46. });
  47. });
  48. // 小程序后查询
  49. function AppletsPay(){
  50. var unified_id = $('#unified_id').val();
  51. var unified_number = $('#unified_number').val();
  52. var transaction_type = $('#transaction_type').val();
  53. if (unified_id && unified_number && transaction_type) {
  54. $.ajax({
  55. url: "{eyou:url link='user/Pay/ajax_applets_pay'/}",
  56. data: {unified_id:unified_id, unified_number:unified_number, transaction_type:transaction_type},
  57. type:'post',
  58. dataType:'json',
  59. success:function(res){
  60. if (1 == res.code) {
  61. if (!res.data.mobile && !res.data.email) window.location.href = res.url;
  62. if (res.data.mobile) SendMobile(res.data.mobile);
  63. if (res.data.email) SendEmail(res.data.email);
  64. window.location.href = res.url;
  65. }
  66. }
  67. });
  68. }
  69. }
  70. // 微信内部中进行支付
  71. function WeChatInternal()
  72. {
  73. var unified_id = $('#unified_id').val();
  74. var unified_number = $('#unified_number').val();
  75. var transaction_type = $('#transaction_type').val();
  76. wx.miniProgram.getEnv( function(res) {
  77. if(res.miniprogram) {
  78. // 小程序
  79. wx.miniProgram.navigateTo({
  80. url: '/pages/pay/pay?unified_id='+ unified_id +'&unified_number=' + unified_number + '&type=' + transaction_type
  81. });
  82. } else {
  83. $.ajax({
  84. url: "{eyou:url link='user/Pay/wechat_pay'/}",
  85. data: {unified_id:unified_id,unified_number:unified_number,transaction_type:transaction_type},
  86. type:'post',
  87. dataType:'json',
  88. success:function(res){
  89. if (1 == res.code) {
  90. callpay(res.msg);
  91. }else{
  92. showErrorAlert(res.msg);
  93. }
  94. }
  95. });
  96. }
  97. });
  98. }
  99. //调用微信JS api 支付
  100. function jsApiCall(data)
  101. {
  102. WeixinJSBridge.invoke(
  103. 'getBrandWCPayRequest',data,
  104. function(res){
  105. if(res.err_msg == "get_brand_wcpay_request:ok"){
  106. layer.msg('微信支付完成!', {time: 1000}, function(){
  107. pay_deal_with();
  108. });
  109. }else if(res.err_msg == "get_brand_wcpay_request:cancel"){
  110. var order_source = $('#order_source').val();
  111. if (2 == order_source) {
  112. showErrorAlert('用户取消支付,请选择支付方式!');
  113. }else{
  114. layer.alert('用户取消支付,跳转至订单列表!', {icon:5, title: false, closeBtn: false},function(){
  115. var OrderUrl = "{eyou:url link='user/Shop/shop_centre'/}";
  116. window.location.href = OrderUrl;
  117. });
  118. }
  119. }else{
  120. showErrorAlert('支付失败');
  121. }
  122. }
  123. );
  124. }
  125. // 微信内部支付时,先进行数据判断
  126. function callpay(data)
  127. {
  128. if (typeof WeixinJSBridge == "undefined"){
  129. if( document.addEventListener ){
  130. document.addEventListener('WeixinJSBridgeReady', jsApiCall, false);
  131. }else if (document.attachEvent){
  132. document.attachEvent('WeixinJSBridgeReady', jsApiCall);
  133. document.attachEvent('onWeixinJSBridgeReady', jsApiCall);
  134. }
  135. }else{
  136. jsApiCall(data);
  137. }
  138. }
  139. // 余额支付,仅用于购买商品时支付
  140. function BalancePayment(){
  141. var unified_id = $('#unified_id').val();
  142. var unified_number = $('#unified_number').val();
  143. // 禁止再次点击余额支付
  144. $('#BalancePayment').prop("disabled",true).css("pointer-events","none");
  145. $.ajax({
  146. url: "{eyou:url link='user/Pay/balance_payment'/}",
  147. data: {unified_id:unified_id,unified_number:unified_number},
  148. type:'post',
  149. dataType:'json',
  150. success:function(res){
  151. if (1 == res.code) {
  152. layer.msg(res.msg, {time: 2000}, function(){
  153. window.location.href = res.url;
  154. });
  155. }else{
  156. IsRecharge(res.msg,res.url);
  157. }
  158. }
  159. });
  160. }
  161. // 是否要去充值
  162. function IsRecharge(msg='',url=''){
  163. layer.confirm(msg, {
  164. title: false,
  165. skin: 'xin-demo-btn',
  166. btn: ['去充值', '其他方式支付'], //按钮
  167. closeBtn: 0,
  168. shadeClose: true
  169. cancel: function(index, layero){
  170. $('#BalancePayment').prop("disabled",false).css("pointer-events","");
  171. }
  172. }, function(){
  173. window.location.href = url;
  174. // layer.confirm('充值成功,是否立即支付?', {
  175. // title:false,
  176. // btn: ['立即支付','其他方式支付']
  177. // },function(){
  178. // BalancePayment();
  179. // },function(index){
  180. // // 选择其他方式支付时,恢复禁用的余额支付按钮
  181. // $('#BalancePayment').prop("disabled",false).css("pointer-events","");
  182. // layer.closeAll(index);
  183. // });
  184. }, function(index){
  185. // 选择其他方式支付时,恢复禁用的余额支付按钮
  186. $('#BalancePayment').prop("disabled",false).css("pointer-events","");
  187. layer.closeAll(index);
  188. });
  189. }
  190. // 支付后跳转
  191. function pay_deal_with(){
  192. var unified_number = $('#unified_number').val();
  193. var transaction_type = $('#transaction_type').val();
  194. $.ajax({
  195. url: "{eyou:url link='user/Pay/pay_deal_with'/}",
  196. data: {unified_number:unified_number,transaction_type:transaction_type},
  197. type:'post',
  198. dataType:'json',
  199. success:function(res){
  200. if (1 == res.data.status) {
  201. if (!res.data.mobile && !res.data.email) window.location.href = res.url;
  202. if (res.data.mobile) SendMobile(res.data.mobile);
  203. if (res.data.email) SendEmail(res.data.email);
  204. window.location.href = res.url;
  205. }
  206. }
  207. });
  208. }
  209. // 发送短信
  210. function SendMobile(result) {
  211. if (result) {
  212. $.ajax({
  213. url: result.url,
  214. data: result.data,
  215. type:'post',
  216. dataType:'json'
  217. });
  218. }
  219. }
  220. // 发送邮件
  221. function SendEmail(result) {
  222. if (result) {
  223. $.ajax({
  224. url: result.url,
  225. data: result.data,
  226. type:'post',
  227. dataType:'json'
  228. });
  229. }
  230. }
  231. </script>
  232. </body>
  233. </html>