diff --git a/Application/Sdk/View/default/Spend/pay_way.html b/Application/Sdk/View/default/Spend/pay_way.html index 7d2698a7..345d8957 100644 --- a/Application/Sdk/View/default/Spend/pay_way.html +++ b/Application/Sdk/View/default/Spend/pay_way.html @@ -154,7 +154,7 @@ - +
@@ -164,7 +164,7 @@
- +
@@ -228,59 +228,75 @@ } } - defaultInit(); - + var timefun; - $(".select_pay_info").click(function(){ - timefun = setTimeout(function(){ - $(".tipmsg").html("切换支付失败"); - $(".msgdialog").show(); - },1000); - $(".payment_rest").show(); - clearTimeout(timefun); - }) - $(".payment_rest .title>img").click(function(){ - $(".payment_rest").hide(); - }) - $(".payment_rest_way").on("click",function(){ - $(this).children("img").attr("src","__IMG__/pay_way/dagou2.png"); - $(this).siblings(".payment_rest_way").children("img").attr("src","__IMG__/pay_way/dagou1.png"); - let img=$(this).children("div").children("img").attr("src"); - let text = $(this).children("div").children("span").text(); - //获取支付参数 - payway = $(this).data("type"); - payurl = $(this).data("url"); - - $(".select_pay_info").children(".slide").attr("src",img); - $(".select_pay_info").children("div").text(text); - $(".payment_rest").hide(); + $(function() { + defaultInit(); + + $(".select_pay_info").click(function(){ + timefun = setTimeout(function(){ + $(".tipmsg").html("切换支付失败"); + $(".msgdialog").show(); + },1000); + $(".payment_rest").show(); + clearTimeout(timefun); + }); + $(".payment_rest .title>img").click(function(){ + $(".payment_rest").hide(); + }); - }) - //拉起支付 - var flag = false; - $(".confirm_pay").on("click",function(){ - if (flag){ - $(".tipmsg").html("支付请求中,请勿重复提交"); - $(".msgdialog").show(); - return false; - }; - flag = true; - - if(payway == "wxpay"){ - wxpay(); - } - if(payway == "alipay"){ - alipay(); - } - if(payway == "shorcut"){ - shorcut(); - } - if(payway == "platform_pay"){ - platform_pay(); - } + $(".payment_rest_way").on("click",function(){ + $(this).children("img").attr("src","__IMG__/pay_way/dagou2.png"); + $(this).siblings(".payment_rest_way").children("img").attr("src","__IMG__/pay_way/dagou1.png"); + let img=$(this).children("div").children("img").attr("src"); + let text = $(this).children("div").children("span").text(); + //获取支付参数 + payway = $(this).data("type"); + payurl = $(this).data("url"); + + $(".select_pay_info").children(".slide").attr("src",img); + $(".select_pay_info").children("div").text(text); + $(".payment_rest").hide(); + + }); + //拉起支付 + var flag = false; + $(".confirm_pay").on("click",function(){ + if (flag){ + $(".tipmsg").html("支付请求中,请勿重复提交"); + $(".msgdialog").show(); + return false; + }; + flag = true; + + if(payway == "wxpay"){ + wxpay(); + } + if(payway == "alipay"){ + alipay(); + } + if(payway == "shorcut"){ + shorcut(); + } + if(payway == "platform_pay"){ + platform_pay(); + } + + }); - }) + $(".payment_rest_btn").click(function(){ + $(".payment_rest_btn").hide(); + $(".weixin").show(); + }); + + $(".forbid_confirm,.forbid_close").click(function(){ + $(".msgdialog").hide(); + }); + + }); + + //微信支付 function wxpay(){ $r = small_program("{:C('sqpay.wx_small')}"); @@ -343,16 +359,6 @@ window.location.href = payurl; } - - - $(".payment_rest_btn").click(function(){ - $(".payment_rest_btn").hide(); - $(".weixin").show(); - }) - - $(".forbid_confirm,.forbid_close").click(function(){ - $(".msgdialog").hide(); - })