支付
查询
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeForm.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeForm.js
index c83802f23..55dd46335 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeForm.js
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeForm.js
@@ -21,13 +21,22 @@ var bootstrap = function ($, learun) {
if (parseFloat($('#PayMoney').html()) > PayFeeTotal) {
return learun.alert.warning("所交费用超出应交费用!");
}
- //$('.paydetail').each(function(i, item) {
- // console.log('item',item);
- //});
- learun.httpAsyncPost(top.$.rootUrl + '/EducationalAdministration/StuInfoFresh/PayFeeQRCode', { keyValue: keyValue }, function (res) {
+ var detail = "";
+ $('.paydetail').each(function (i, item) {
+ detail += $(this).attr('id') + "!" + $(this).attr('value') + '&';
+ });
+ detail = detail.substring(0, detail.length - 1);
+ var param = {};
+ param.LoanMoney = $('#LoanMoney').val();
+ param.PayFeeDetail = detail;
+ param.PayMoney = $('#PayMoney').html();
+ //console.log('asd', JSON.stringify(param));
+ //$('#qrcodeImg').attr('src', "/Content/images/QRCode/2022070505103378891.jpg");
+ //return;
+ learun.httpAsyncPost(top.$.rootUrl + '/EducationalAdministration/StuInfoFresh/PayFeeQRCode?keyValue=' + keyValue, { strEntity: JSON.stringify(param) }, function (res) {
learun.loading(false);
console.log(res);
- $('#qrcodeImg').attr('src', res.info);
+ $('#qrcodeImg').attr('src', res.info);
//if (res.code == learun.httpCode.success) {
// if (!!callback) {
// callback(res);
@@ -40,9 +49,6 @@ var bootstrap = function ($, learun) {
//}
//layer.close(layer.index);
});
- //learun.postForm(top.$.rootUrl + '/EducationalAdministration/StuInfoFresh/PayFeeQRCode', { keyValue: keyValue}, function () {
- // learun.frameTab.currentIframe().refreshGirdData();
- //});
});
//取消缴费
$('#cancelPayFee').click(function () {
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj b/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj
index 4f8c14602..a3db0315b 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Learun.Application.Web.csproj
@@ -6432,6 +6432,7 @@
+