[更新]修改微信支付测试退款操作

This commit is contained in:
邹景立 2017-04-14 12:43:21 +08:00
parent ef6d4935af
commit 55a01718c4

View File

@ -134,7 +134,12 @@
/*! 发起退款操作 */
$('body').on('click', '.refund-qrc-test a', function () {
$.form.load('{:url("pay")}?action=refund');
$.form.load('{:url("pay")}?action=refund', {}, 'get', function (ret) {
if (ret.code === 1) {
timer && window.clearInterval(timer), timer = null;
return $.msg.success(ret.msg, 3), false;
}
});
});
});