Authored by liangxs

支付接口,传订单号和支付方式

... ... @@ -165,3 +165,21 @@ loading.showLoadingMask();
$(document).ready(main);
$('.box').on('click', function() {
var url = $('.payapp-list a').attr('href'),
theRequest = [],
orderCode,
payment;
if (url.indexOf("?") != -1) {
theRequest = url.split('?')[1].split("&");
orderCode=theRequest[0].split('=')[1];
payment=theRequest[1].split('=')[1];
}
$.ajax({
url:'/shopping/pay/addPaymentInterval?orderCode=' + orderCode + '&payment=' + payment,
method:'get'
});
});
... ...