|
|
@ -64,7 +64,19 @@ $(function(){
|
|
|
|
$("#wxpay").on('click', function() {
|
|
|
|
$("#wxpay").on('click', function() {
|
|
|
|
if (flag) return ;
|
|
|
|
if (flag) return ;
|
|
|
|
flag = true;
|
|
|
|
flag = true;
|
|
|
|
window.location.href = $(this).data('url');
|
|
|
|
$.ajax({
|
|
|
|
|
|
|
|
type: "GET",
|
|
|
|
|
|
|
|
dataType: "json",
|
|
|
|
|
|
|
|
url: $(this).data('url'),
|
|
|
|
|
|
|
|
data: {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
success: function(r) {
|
|
|
|
|
|
|
|
window.location.href = r.url;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
//window.location.href = $(this).data('url');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$('#alipaybtn').on('click',function() {
|
|
|
|
$('#alipaybtn').on('click',function() {
|
|
|
|